Ejemplo n.º 1
0
 public NoteService(INoteDAL noteDAL, IPatientService patientService, IDoctorService doctorService, IDiseaseService diseaseService)
 {
     this.NoteDAL        = noteDAL;
     this.PatientService = patientService;
     this.DoctorService  = doctorService;
     this.DiseaseService = diseaseService;
 }
Ejemplo n.º 2
0
 public NoteService(INoteDAL noteDAL, IVisitorService visitorService, ISessionService sessionService, IFilmService filmService)
 {
     this.NoteDAL        = noteDAL;
     this.VisitorService = visitorService;
     this.SessionService = sessionService;
     this.FilmService    = filmService;
 }
Ejemplo n.º 3
0
 public NoteService(INoteDAL noteDAL, IConsumerService consumerService, IBarberService barberService, IHaircutService haircutService)
 {
     this.NoteDAL         = noteDAL;
     this.ConsumerService = consumerService;
     this.BarberService   = barberService;
     this.HaircutService  = haircutService;
 }
Ejemplo n.º 4
0
 public NoteController(INoteDAL noteDAL, IAccountDAL accountDAL, IProfileDAL profileDAL, IEmail _email, ISessionWrapper sessionWrapper, IUserSession userSession)
 {
     this.accountDAL     = accountDAL;
     this.profileDAL     = profileDAL;
     this._email         = _email;
     this.sessionWrapper = sessionWrapper;
     this.userSession    = userSession;
     this.noteDAL        = noteDAL;
 }
Ejemplo n.º 5
0
 /// <summary>
 /// On execute provide execute DAL instance
 /// </summary>
 /// <param name="noteDAO">DAL instance</param>
 public NoteBLO(INoteDAL noteDAO)
 {
     _noteDAO = noteDAO ?? throw new ArgumentNullException("NoteDAO is null");
 }