Example #1
0
 public GuestBusiness(JTDContext context)
 {
     _context = context;
 }
Example #2
0
 public CompanyController(JTDContext context, ICompanyService service)
 {
     _service = service;
     _context = context;
 }
Example #3
0
 public TravelBusiness(JTDContext context, IVehicleService vehicleService)
 {
     _context        = context;
     _vehicleService = vehicleService;
 }