public BaseUnitOfWork(GiftShopContext context)
 {
     this.context = context;
 }
Example #2
0
 public BaseRepository(GiftShopContext context)
 {
     Context = context;
     Query   = context.Set <TEntity>();
 }
 public GiftShopUnitOfWork(GiftShopContext context) : base(context)
 {
 }