Example #1
0
 public ServicesController(CarRescueContext context)
 {
     _context = context;
 }
 public NotificationsController(CarRescueContext context)
 {
     _context = context;
 }
Example #3
0
 public UsersController(CarRescueContext context, IHostingEnvironment hostingEnvironment)
 {
     _context            = context;
     _hostingEnvironment = hostingEnvironment;
 }
Example #4
0
 public OrderProcesses()
 {
     _context = new CarRescueContext();
 }
 public OrdersController(CarRescueContext context)
 {
     _context = context;
 }
 public ReportsController(CarRescueContext context)
 {
     _context = context;
 }
 public NotificationProvider( )
 {
     _context = new CarRescueContext();
 }
Example #8
0
 public RatingsController(CarRescueContext context)
 {
     _context = context;
 }