public SportCentersController(
     ISportCategoryService sportCategories,
     IAddressService addressService,
     ISportCategoryService categoryService,
     ISportCenterService sportCenterService)
     : base(sportCategories, addressService, categoryService, sportCenterService)
 {
 }
Ejemplo n.º 2
0
 public SportCentersController(
     ISportCategoryService sportCategories,
     IAddressService addressService,
     ISportCategoryService categoryService,
     ISportCenterService sportCenterService)
     : base(sportCategories, addressService, categoryService, sportCenterService)
 {
 }
Ejemplo n.º 3
0
 public UserController(
     ISportCategoryService sportCategories, 
     IAddressService addressService, 
     ISportCategoryService categoryService,
     IUserService userService)
     : base(sportCategories,addressService,categoryService)
 {
     this.userService = userService;
 }
Ejemplo n.º 4
0
 public UserController(
     ISportCategoryService sportCategories,
     IAddressService addressService,
     ISportCategoryService categoryService,
     IUserService userService)
     : base(sportCategories, addressService, categoryService)
 {
     this.userService = userService;
 }
Ejemplo n.º 5
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 UsersController(
     ISportCategoryService sportCategories,
     IAddressService addressService,
     ISportCategoryService categoryService,
     ISportCenterService sportCenterService,
     IUserService usersService,
     IMessageService messageService)
     : base(sportCategories, addressService, categoryService)
 {
     this.usersService=usersService;
     this.messageService = messageService;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 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;
        }
Ejemplo n.º 10
0
 public AccountController(ApplicationUserManager userManager, ApplicationSignInManager signInManager, ISportCategoryService sportCategories, IAddressService addressService, ISportCategoryService categoryService)
     : base(sportCategories, addressService, categoryService)
 {
     UserManager   = userManager;
     SignInManager = signInManager;
 }
Ejemplo n.º 11
0
 public AccountController(ISportCategoryService sportCategories, IAddressService addressService, ISportCategoryService categoryService)
     : base(sportCategories, addressService, categoryService)
 {
 }
Ejemplo n.º 12
0
 public BaseController(ISportCategoryService sportCategories, IAddressService addressService, ISportCategoryService categoryService)
 {
     this.sportCategories = sportCategories;
     this.addressService  = addressService;
     this.categoryService = categoryService;
 }
 public AccountController(ApplicationUserManager userManager, ApplicationSignInManager signInManager, ISportCategoryService sportCategories, IAddressService addressService, ISportCategoryService categoryService)
     : base(sportCategories, addressService, categoryService)
 {
     UserManager = userManager;
     SignInManager = signInManager;
 }
 public AccountController(ISportCategoryService sportCategories, IAddressService addressService, ISportCategoryService categoryService)
     :base(sportCategories,addressService,categoryService)
 {
 }