Example #1
0
 public SellersDataService(EbuyDbContext context) : base(context)
 {
     this.sellers = this.Repository;
 }
Example #2
0
 public ImagesDataService(EbuyDbContext context) : base(context)
 {
 }
Example #3
0
 public ReviewsDataService(EbuyDbContext context) : base(context)
 {
 }
Example #4
0
 public CategoriesDataService(EbuyDbContext context) : base(context)
 {
     this.categories = this.Repository;
 }
Example #5
0
 public ProductsDataService(EbuyDbContext context)
     : base(context)
 {
     this.products = this.Repository;
 }
Example #6
0
 protected BaseDataService(EbuyDbContext context)
 {
     this.Context    = context;
     this.Repository = this.GetRepository();
 }
Example #7
0
 public UsersDataService(EbuyDbContext context)
     : base(context)
 {
 }