Пример #1
0
        public ActionResult _TotalVehicle()
        {
            try
            {
                var model =new ReportModel
                {
                    TotolVehicle = _vehicleRepository.TotalVehicleCount(),
                };
                return PartialView(model);

            }
            catch (Exception)
            {

                throw;
            }
        }
Пример #2
0
        public ActionResult _TotalCarWash()
        {
            try
            {
                var model = new ReportModel
                {
                    TotalCarWash = _carWashRepository.TotalCarWashCount(),
                };
                return PartialView(model);

            }
            catch (Exception)
            {

                throw;
            }
        }