コード例 #1
0
 public CardController(UserManager <AppUser> userManager, ICardService cardService,
                       IUserService userService, IPacientService pacientService, IServicesService servicesService)
 {
     _userManager     = userManager;
     _cardService     = cardService;
     _userService     = userService;
     _pacientService  = pacientService;
     _servicesService = servicesService;
 }
コード例 #2
0
 public DoctorsController(IDoctorService doctors, IMemoService memo, IPacientService pacients)
 {
     this._doctors = doctors;
     this._memo = memo;
     this._pacients = pacients;
 }
コード例 #3
0
 public AccountController(IPacientService pacients, IDoctorService doctors)
 {
     this._pacients = pacients;
     this._doctors = doctors;
 }
コード例 #4
0
 public PacientsController(IPacientService pacients, IMemoService memo)
 {
     this._pacients = pacients;
     this._memo = memo;
 }
コード例 #5
0
 public PacientsController(IPacientService pacientService,
                           UserManager <AppUser> userManager)
 {
     _pacientService = pacientService;
     _userManager    = userManager;
 }
コード例 #6
0
 public PacientController(IPacientService pacientService)
 {
     this._pacientService = pacientService;
 }