Ejemplo n.º 1
0
 public ShopUserController(IShopUserService ShopUserService, ICityService CityService, IDistrictService DistrictService, IWardService WardService, IRoleService RoleService, IUserService UserService)
 {
     this.shopUserService = ShopUserService;
     this.cityService     = CityService;
     this.districtService = DistrictService;
     this.wardService     = WardService;
     this.roleService     = RoleService;
     this.userService     = UserService;
 }
Ejemplo n.º 2
0
 public CartridgeController(
     ICartridgeService cartridgeService,
     IMovieService movieService,
     IShopUserService shopUserService,
     IRentalService rentalService)
 {
     CartridgeService = cartridgeService;
     MovieService     = movieService;
     ShopUserService  = shopUserService;
     RentalService    = rentalService;
 }
Ejemplo n.º 3
0
 public AuthController(
     IAuthService authService,
     IUsersService usersService,
     IAddressService addressService,
     UserManager <User> userManager,
     SignInManager <User> signInManager,
     IConfiguration configuration,
     IMapper mapper,
     ITokenService tokenService,
     IShopUserService shopUserService,
     IShopEmployeeService shopEmployeeService)
 {
     AuthService         = authService;
     UsersService        = usersService;
     AddressService      = addressService;
     UserManager         = userManager;
     SignInManager       = signInManager;
     Configuration       = configuration;
     Mapper              = mapper;
     TokenService        = tokenService;
     ShopUserService     = shopUserService;
     ShopEmployeeService = shopEmployeeService;
 }
Ejemplo n.º 4
0
 public ShopUserController(IShopUserService shopUserService)
 {
     ShopUserService = shopUserService;
 }