コード例 #1
0
ファイル: UserController.cs プロジェクト: Lisito11/AquitoApp
 public UserController(d2bc1ckqeusvkjContext context, IMapper mapper, UserManager <Useraquito> userManager, RoleManager <Roleaquito> roleManager, ITokenService tokenService) : base(context, mapper)
 {
     _userManager  = userManager;
     _context      = context;
     _mapper       = mapper;
     _tokenService = tokenService;
     _roleManager  = roleManager;
 }
コード例 #2
0
 public ClientController(d2bc1ckqeusvkjContext context, IMapper mapper) : base(context, mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
コード例 #3
0
 public TypeVehicleController(d2bc1ckqeusvkjContext context, IMapper mapper) : base(context, mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
コード例 #4
0
 public CustomBaseController(d2bc1ckqeusvkjContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
コード例 #5
0
ファイル: RoleController.cs プロジェクト: Lisito11/AquitoApp
 public RoleController(RoleManager <Roleaquito> roleManager, d2bc1ckqeusvkjContext context)
 {
     _roleManager = roleManager;
     _context     = context;
 }
コード例 #6
0
 public ReservationController(d2bc1ckqeusvkjContext context, IMapper mapper) : base(context, mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }