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