public async Task <TourCancelVM> GetTourCancelListAsync(int pageno, int pagesize, string sterm)
        {
            TourCancelVM model    = new TourCancelVM();
            var          parStart = new SqlParameter("@Start", (pageno - 1) * pagesize);
            var          parEnd   = new SqlParameter("@PageSize", pagesize);

            var parSearchTerm = new SqlParameter("@SearchTerm", DBNull.Value);

            if (!(sterm == null || sterm == ""))
            {
                parSearchTerm.Value = sterm;
            }
            // setting stored procedure OUTPUT value
            // This return total number of rows, and avoid two database call for data and total number of rows
            var spOutput = new SqlParameter
            {
                ParameterName = "@TotalCount",
                SqlDbType     = System.Data.SqlDbType.BigInt,
                Direction     = System.Data.ParameterDirection.Output
            };

            model.tourCancelList = await objDB.Database.SqlQuery <TourCancelView>("udspMstTourCancelList @Start, @PageSize,@SearchTerm, @TotalCount out",
                                                                                  parStart, parEnd, parSearchTerm, spOutput).ToListAsync();

            model.TotalRecords = int.Parse(spOutput.Value.ToString());
            return(model);
        }
Example #2
0
 public ActionResult TourCancelList(int PageNo = 1, int PageSize = 10, string SearchTerm = "")
 {
     try
     {
         ViewBag.ActiveURL = "/Admin/Tourcancellist";
         string          query    = "PageNo=" + PageNo + "&PageSize=" + PageSize + "&SearchTerm=" + SearchTerm;
         TourCancelAPIVM apiModel = objAPI.GetRecordByQueryString <TourCancelAPIVM>("configuration", "tourcancellist", query);
         TourCancelVM    model    = new TourCancelVM();
         model.tourCancelList = apiModel.tourCancelList;
         model.PagingInfo     = new PagingInfo {
             CurrentPage = PageNo, ItemsPerPage = PageSize, TotalItems = apiModel.TotalRecords
         };
         if (Request.IsAjaxRequest())
         {
             return(PartialView("_pvTourCancelList", model));
         }
         return(View(model));
     }
     catch (AuthorizationException)
     {
         TempData["ErrMsg"] = "Your Login Session has expired. Please Login Again";
         return(RedirectToAction("Login", "Account", new { Area = "" }));
     }
 }