예제 #1
0
        // GET: Business
        public ActionResult Index(int?typeID)
        {
            var allServices = new AllServiceViewModel();

            allServices.AllServices = BusinessService.GetAllServices(typeID);
            allServices.AllTypes    = BusinessService.GetAllServiceTypes();
            allServices.TypeID      = typeID;
            return(View(allServices));
        }