public CategoriesController(CWheelsDBContext cWheelsDBContext)
 {
     _cWheelsDBContext = cWheelsDBContext;
 }
Exemple #2
0
 public VehiclesController(CWheelsDBContext cWheelsDBContext)
 {
     _cWheelsDBContext = cWheelsDBContext;
 }
Exemple #3
0
 public AccountsController(IConfiguration configuration, CWheelsDBContext cWheelsDBContext)
 {
     _cWheelsDBContext = cWheelsDBContext;
     _configuration    = configuration;
     _auth             = new AuthService(_configuration);
 }