public CardController(UserManager <AppUser> userManager, ICardService cardService, IUserService userService, IPacientService pacientService, IServicesService servicesService) { _userManager = userManager; _cardService = cardService; _userService = userService; _pacientService = pacientService; _servicesService = servicesService; }
public DoctorsController(IDoctorService doctors, IMemoService memo, IPacientService pacients) { this._doctors = doctors; this._memo = memo; this._pacients = pacients; }
public AccountController(IPacientService pacients, IDoctorService doctors) { this._pacients = pacients; this._doctors = doctors; }
public PacientsController(IPacientService pacients, IMemoService memo) { this._pacients = pacients; this._memo = memo; }
public PacientsController(IPacientService pacientService, UserManager <AppUser> userManager) { _pacientService = pacientService; _userManager = userManager; }
public PacientController(IPacientService pacientService) { this._pacientService = pacientService; }