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