Exemplo n.º 1
0
 public statOfVehicleHandler(ICustomerRepository customer, IMechanicRepository mechanic, IStatOfVehicleRepository statOfVehicle, IVehicleRepository vehicle)
 {
     this.customer      = customer;
     this.mechanic      = mechanic;
     this.statOfVehicle = statOfVehicle;
     this.vehicle       = vehicle;
 }
Exemplo n.º 2
0
 public notificationHub(IServiceRepository serviceRepository, INotificationRepository notificationRepository, IAddServRepository addServRepository, IServAssReqRepository servAssReqRepository, IStatOfVehicleRepository statOfVehicleRepository)
 {
     this.serviceRepository       = serviceRepository;
     this.notificationRepository  = notificationRepository;
     this.statOfVehicleRepository = statOfVehicleRepository;
     this.addServRepository       = addServRepository;
     this.servAssReqRepository    = servAssReqRepository;
 }
Exemplo n.º 3
0
 public statOfVehicleController(
     ICustomerRepository customerRepository,
     IMechanicRepository mechanicRepository,
     IVehicleRepository vehicleRepository,
     IStatOfVehicleRepository StatOfVehicleRepository)
 {
     this.customerRepository      = customerRepository;
     this.mechanicRepository      = mechanicRepository;
     this.vehicleRepository       = vehicleRepository;
     this.StatOfVehicleRepository = StatOfVehicleRepository;
     sov = new statOfVehicleHandler(this.customerRepository, this.mechanicRepository, this.StatOfVehicleRepository, this.vehicleRepository);
 }
Exemplo n.º 4
0
 public addServiceHandler(IAddServRepository addServ, IStatOfVehicleRepository statOfVehicleRepository)
 {
     this.addServ = addServ;
     this.statOfVehicleRepository = statOfVehicleRepository;
 }
Exemplo n.º 5
0
 public addServiceController(IAddServRepository addServRepository, IStatOfVehicleRepository statOfVehicleRepository)
 {
     this.addServRepository       = addServRepository;
     this.statOfVehicleRepository = statOfVehicleRepository;
     ash = new addServiceHandler(this.addServRepository, this.statOfVehicleRepository);
 }
 public ongoingServiceHandler(IOnGoingServRepository onGoingServ, IStatOfVehicleRepository statOfVehicleRepository)
 {
     this.onGoingServ             = onGoingServ;
     this.statOfVehicleRepository = statOfVehicleRepository;
 }
 public ongoingServiceController(IOnGoingServRepository onGoingServRepository, IStatOfVehicleRepository statOfVehicleRepository)
 {
     this.onGoingServRepository   = onGoingServRepository;
     this.statOfVehicleRepository = statOfVehicleRepository;
     ogs = new ongoingServiceHandler(this.onGoingServRepository, this.statOfVehicleRepository);
 }