Exemplo n.º 1
0
 public CompanyManager(
     BMECarsDbContext BMECarsDbContext,
     UserManager <User> _userManager,
     IHttpContextAccessor _httpContextAccessor
     )
 {
     _context            = BMECarsDbContext;
     userManager         = _userManager;
     httpContextAccessor = _httpContextAccessor;
 }
Exemplo n.º 2
0
 public ReservationManager(
     BMECarsDbContext BMECarsDbContext,
     ICarManager _carManager,
     ILocationManager _locationManager,
     ICompanyManager _companyManager,
     UserManager <User> _userManager,
     IHttpContextAccessor _httpContextAccessor
     )
 {
     _context            = BMECarsDbContext;
     carManager          = _carManager;
     locationManager     = _locationManager;
     userManager         = _userManager;
     companyManager      = _companyManager;
     httpContextAccessor = _httpContextAccessor;
 }
Exemplo n.º 3
0
 public CompanyController(BMECarsDbContext bmeCarsDbContext)
 {
     _context = bmeCarsDbContext;
 }
Exemplo n.º 4
0
 public LocationManager(BMECarsDbContext BMECarsDbContext)
 {
     _context = BMECarsDbContext;
 }
Exemplo n.º 5
0
 public CarManager(BMECarsDbContext BMECarsDbContext)
 {
     _context = BMECarsDbContext;
 }
Exemplo n.º 6
0
 public AjaxController(ILocationManager locationManager, BMECarsDbContext dbContext)
 {
     this.locationManager = locationManager;
     _context             = dbContext;
 }