public VehicleModels2Controller(Garage2_0MVCContext db, IParkingService parkingService,
                                 IParkingCapacityService parkingCapacityService, IMemberSelectService memberSelectService)
 {
     this.db                     = db;
     this.parkingService         = parkingService;
     this.memberSelectService    = memberSelectService;
     this.parkingCapacityService = parkingCapacityService;
 }
 public TypeSelectService(Garage2_0MVCContext db, IParkingService parkingService, IParkingCapacityService parkingCapacityService)
 {
     this.db                     = db;
     this.parkingService         = parkingService;
     this.parkingCapacityService = parkingCapacityService;
 }
 public MembersController(Garage2_0MVCContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public MemberSelectService(Garage2_0MVCContext db)
 {
     this.db = db;
 }
 public VehicleModelsController(Garage2_0MVCContext context)
 {
     db = context;
 }
 public StatisticsViewComponent(Garage2_0MVCContext db)
 {
     this.db = db;
 }
Beispiel #7
0
 public ParkingCapacityService(Garage2_0MVCContext db)
 {
     this.db = db;
 }
 public ReceiptViewComponent(Garage2_0MVCContext db)
 {
     this.db = db;
 }
Beispiel #9
0
 public FilterService(Garage2_0MVCContext db)
 {
     this.db = db;
 }
 public VehicleTypesController(Garage2_0MVCContext db)
 {
     this.db = db;
 }
Beispiel #11
0
 public ParkingViewComponent(Garage2_0MVCContext db)
 {
     this.db = db;
 }