Exemplo n.º 1
0
 public BasicAuthenticationHandler(
     IOptionsMonitor <AuthenticationSchemeOptions> options,
     ILoggerFactory logger,
     UrlEncoder encoder,
     ISystemClock clock,
     IEmployeeService adminService,
     IBaseCRUDService <ClientModel, ClientSearchRequest, ClientUpdateRequest, ClientUpdateRequest> clientService,
     openRoadsContext context)
     : base(options, logger, encoder, clock)
 {
     _adminService  = adminService;
     _clientService = clientService;
     _context       = context;
 }
Exemplo n.º 2
0
 public PersonService(openRoadsContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemplo n.º 3
0
 public RecommenderService(openRoadsContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 4
0
 public BaseService(openRoadsContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 5
0
 public VehicleModelService(openRoadsContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemplo n.º 6
0
 public RatingService(openRoadsContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemplo n.º 7
0
 public ReservationService(openRoadsContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemplo n.º 8
0
 public BranchService(openRoadsContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemplo n.º 9
0
 public static void Init(openRoadsContext context)
 {
     context.Database.EnsureCreated();
 }
Exemplo n.º 10
0
 public ClientService(openRoadsContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemplo n.º 11
0
 public LoginDataService(openRoadsContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemplo n.º 12
0
 public BaseCRUDService(openRoadsContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemplo n.º 13
0
 public EmployeeEmployeeRolesService(openRoadsContext context, IMapper mapper) : base(context, mapper)
 {
 }