Ejemplo n.º 1
0
 public CarOptionRepository(BimcodContext context)
 {
     this.context = context;
 }
 public BuiltInCarRepository(BimcodContext context)
 {
     this.context = context;
 }
 public AuthenticationService(IConfiguration config, BimcodContext context)
 {
     this.config  = config;
     this.context = context;
 }
 public OptionPartRepository(BimcodContext context)
 {
     this.context = context;
 }
Ejemplo n.º 5
0
 public ModuleRepository(BimcodContext context)
 {
     this.context = context;
 }
Ejemplo n.º 6
0
 public UserRepository(BimcodContext context, AuthenticationService authenticationService)
 {
     this.context = context;
     this.authenticationService = authenticationService;
 }