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;
 }
예제 #5
0
 public ModuleRepository(BimcodContext context)
 {
     this.context = context;
 }
예제 #6
0
 public UserRepository(BimcodContext context, AuthenticationService authenticationService)
 {
     this.context = context;
     this.authenticationService = authenticationService;
 }