예제 #1
0
        public ActionResult ListSeller(CustomerSearchModel model)
        {
            FillViewBag();

            ViewBag.Customers = CustomerDomain.ListCustomers(model.Name, model.GenderId, model.CityId, model.RegionId, model.LastPurchaseStart, model.LastPuchaseEnd, model.ClassificationId, int.Parse(User.Identity.Name)).Select(c => (CustomerListModel)c);

            return(View("List"));
        }