Ejemplo n.º 1
0
 public ProjectPurchaseOrderRepository(CapRedV2Context context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }
Ejemplo n.º 2
0
 public ProjectInformationRepository(CapRedV2Context context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }
Ejemplo n.º 3
0
 public ProjectInvoiceLineItemRepository(CapRedV2Context context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }
 public CoupaImporterRepository(CapRedV2Context context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }
Ejemplo n.º 5
0
 public DropdownRepository(CapRedV2Context context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }
Ejemplo n.º 6
0
 public UnitOfWork(CapRedV2Context context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }