public EmployeeRepo(CoreMVCDbContext context)
 {
     this.context = context;
 }
Beispiel #2
0
 public ProductService(CoreMVCDbContext context, IStorageService storageService)
 {
     _coreMVCDbContext = context;
     _storageService   = storageService;
 }