コード例 #1
0
 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 UserController(
     ISportCategoryService sportCategories, 
     IAddressService addressService, 
     ISportCategoryService categoryService,
     IUserService userService)
     : base(sportCategories,addressService,categoryService)
 {
     this.userService = userService;
 }
コード例 #4
0
 public UserController(
     ISportCategoryService sportCategories,
     IAddressService addressService,
     ISportCategoryService categoryService,
     IUserService userService)
     : base(sportCategories, addressService, categoryService)
 {
     this.userService = userService;
 }
コード例 #5
0
 public AdminController(
     ISportCategoryService sportCategories,
     IAddressService addressService,
     ISportCategoryService categoryService,
     ISportCenterService sportCenterService)
     : base(sportCategories, addressService, categoryService)
 {
     this.sportCenterService = sportCenterService;
 }
コード例 #6
0
 public AdvancedController(
     ISportCategoryService sportCategories,
     IAddressService addressService,
     ISportCategoryService categoryService,
     ISportCenterService sportCenterService)
     : base(sportCategories, addressService, categoryService)
 {
     this.sportCenterService = sportCenterService;
 }
コード例 #7
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;
 }
コード例 #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;
        }
コード例 #10
0
 public AccountController(ApplicationUserManager userManager, ApplicationSignInManager signInManager, ISportCategoryService sportCategories, IAddressService addressService, ISportCategoryService categoryService)
     : base(sportCategories, addressService, categoryService)
 {
     UserManager   = userManager;
     SignInManager = signInManager;
 }
コード例 #11
0
 public AccountController(ISportCategoryService sportCategories, IAddressService addressService, ISportCategoryService categoryService)
     : base(sportCategories, addressService, categoryService)
 {
 }
コード例 #12
0
ファイル: BaseController.cs プロジェクト: sqvoch/Diplom
 public BaseController(ISportCategoryService sportCategories, IAddressService addressService, ISportCategoryService categoryService)
 {
     this.sportCategories = sportCategories;
     this.addressService  = addressService;
     this.categoryService = categoryService;
 }
コード例 #13
0
 public AccountController(ApplicationUserManager userManager, ApplicationSignInManager signInManager, ISportCategoryService sportCategories, IAddressService addressService, ISportCategoryService categoryService)
     : base(sportCategories, addressService, categoryService)
 {
     UserManager = userManager;
     SignInManager = signInManager;
 }
コード例 #14
0
 public AccountController(ISportCategoryService sportCategories, IAddressService addressService, ISportCategoryService categoryService)
     :base(sportCategories,addressService,categoryService)
 {
 }