コード例 #1
0
 //public AccountController()
 //{ }
 public AccountController(ICustomerService customer, IStaffProfileService StaffProf)
 {
     _customer = customer;
     _StaffProf = StaffProf;
 }
コード例 #2
0
 public EmployeeController(IStaffProfileService staffProfile, IPatientAppointmentService appointments)
 {
     _staffProfile = staffProfile;
     _appointments = appointments;
 }