// Constructor
 public CheckoutService(VehicleRentalDBContext context)
 {
     _context = context;
 }
Exemple #2
0
 public PatronService(VehicleRentalDBContext context)
 {
     _context = context;
 }
Exemple #3
0
 public VehicleRentalBranchService(VehicleRentalDBContext context)
 {
     _context = context;
 }
Exemple #4
0
 // Constructor
 public VehicleRentalAssetService(VehicleRentalDBContext context)
 {
     _context = context;
 }