// // GET: /MerchantQuery/ public ActionResult OfflineShopSaleOrdersQuery() { PagePars pars = new PagePars(); pars.Add("MerchantID", base.LoginUserManager.CurrentUserInfo.MerchantID); ViewBag.Shops = new Client<IOfflineShopContract>().GetInstance().GetShopsOfMerchant(pars); return View(); }
public PageData <T> QueryXml(string reportName, PagePars param) { PageData <T> result = new PageData <T>(); int totalCount = 0; result.CurrentPage = ComplexSqlHelp.GetReportData <T>(Conn, reportName, param.PageSize, param.PageIndex, param.Order, param.Where, true, out totalCount); result.TotalCounts = totalCount; return(result); }
// // GET: /MerchantQuery/ public ActionResult OfflineShopSaleOrdersQuery() { PagePars pars = new PagePars(); pars.Add("MerchantID", base.LoginUserManager.CurrentUserInfo.MerchantID); ViewBag.Shops = new Client <IOfflineShopContract>().GetInstance().GetShopsOfMerchant(pars); return(View()); }
public PageData <T> QueryXml(string reportName, PagePars param) { throw new NotImplementedException(); }