Exemplo n.º 1
0
 public InvoicesController(TruckyContext context)
 {
     _context = context;
 }
Exemplo n.º 2
0
 public EmployeesController(TruckyContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public LookupRepository(TruckyContext context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }
Exemplo n.º 4
0
 public TransportationsController(TruckyContext context)
 {
     _context = context;
 }