public SaleDapperRepository(IContextDapper context) : base(context)
 {
     _context = context;
 }
Example #2
0
 public VinylDiscDapperRepository(IContextDapper context) : base(context)
 {
     _context = context;
 }
Example #3
0
 public ConfigCashbackDapperRepository(IContextDapper context) : base(context)
 {
 }
 public ClientDapperRepository(IContextDapper context) : base(context)
 {
 }
Example #5
0
 protected DapperRepositoryBase(IContextDapper context)
 {
     _context = context;
 }