public SportCentersController(
     ISportCategoryService sportCategories,
     IAddressService addressService,
     ISportCategoryService categoryService,
     ISportCenterService sportCenterService)
     : base(sportCategories, addressService, categoryService, sportCenterService)
 {
 }
예제 #2
0
 public SportCentersController(
     ISportCategoryService sportCategories,
     IAddressService addressService,
     ISportCategoryService categoryService,
     ISportCenterService sportCenterService)
     : base(sportCategories, addressService, categoryService, sportCenterService)
 {
 }
예제 #3
0
 public AdminController(
     ISportCategoryService sportCategories,
     IAddressService addressService,
     ISportCategoryService categoryService,
     ISportCenterService sportCenterService)
     : base(sportCategories, addressService, categoryService)
 {
     this.sportCenterService = sportCenterService;
 }
 public AdvancedController(
     ISportCategoryService sportCategories,
     IAddressService addressService,
     ISportCategoryService categoryService,
     ISportCenterService sportCenterService)
     : base(sportCategories, addressService, categoryService)
 {
     this.sportCenterService = sportCenterService;
 }
 public AddressService(
     IDeletableEntityRepository<Address> addressesDb,
     IDeletableEntityRepository<User> usersDb,
      IDeletableEntityRepository<SportCenter> sportCenters,
      ISportCenterService sportCenterService)
 {
     this.addressesDb = addressesDb;
     this.usersDb = usersDb;
     this.sportCenters = sportCenters;
     this.sportCenterService = sportCenterService;
 }
예제 #6
0
 public AddressService(
     IDeletableEntityRepository <Address> addressesDb,
     IDeletableEntityRepository <User> usersDb,
     IDeletableEntityRepository <SportCenter> sportCenters,
     ISportCenterService sportCenterService)
 {
     this.addressesDb        = addressesDb;
     this.usersDb            = usersDb;
     this.sportCenters       = sportCenters;
     this.sportCenterService = sportCenterService;
 }
 public UsersController(
     ISportCategoryService sportCategories,
     IAddressService addressService,
     ISportCategoryService categoryService,
     ISportCenterService sportCenterService,
     IUserService usersService,
     IMessageService messageService)
     : base(sportCategories, addressService, categoryService)
 {
     this.usersService=usersService;
     this.messageService = messageService;
 }
예제 #8
0
 public UsersController(
     ISportCategoryService sportCategories,
     IAddressService addressService,
     ISportCategoryService categoryService,
     ISportCenterService sportCenterService,
     IUserService usersService,
     IMessageService messageService)
     : base(sportCategories, addressService, categoryService)
 {
     this.usersService   = usersService;
     this.messageService = messageService;
 }
예제 #9
0
        public HomeController(
            ISportCategoryService sportCategories,
            IAddressService addressService,
            ISportCategoryService categoryService,
            ISportCenterService sportCenterService,
            IUserService usersService)
            : base(sportCategories, addressService, categoryService)
        {
            this.sportCenterService = sportCenterService;
            this.usersService       = usersService;

            ViewBag.AllSportCentersCount = sportCenterService.All().Count();
            ViewBag.ItemsPerPage         = 4;
        }