public OrderRepository(OrderPOSContext companyContext) : base(companyContext)
 {
 }
Exemple #2
0
 public Repository(OrderPOSContext companyContext)
 {
     _orderPOSContext = companyContext;
     ds = _orderPOSContext.Set <T>();
 }