public HomeController(IMemberShipService memberShipService)
 {
     this.memberShipService = memberShipService;
 }
Example #2
0
 public GaragesController(Garage_3Context context, IParkVehicleService parkVehicleService, IMemberShipService memberShipService)
 {
     m_ParkVehicleService = parkVehicleService;
     m_MemberShipService  = memberShipService;
     dbGarage             = context;
 }