Example #1
0
 public NoteService(IOrganizerDbContext organizerDbContext, INoteDto noteDTO)
 {
     this.organizerDbContext = organizerDbContext;
     this.noteDTO            = noteDTO;
 }
 public ScheduleController(IOrganizerDbContext organizerDbContext, IScheduleService <IScheduleEntryDto> scheduleService)
 {
     this.organizerDbContext = organizerDbContext;
     this.scheduleService    = scheduleService;
 }
 public ToDoController(IOrganizerDbContext organizerDbContext, IToDoService <IToDoDto> toDoService)
 {
     _organizerDbContext = organizerDbContext;
     _toDoService        = toDoService;
 }
Example #4
0
 public DayController(IOrganizerDbContext organizerDbContext, IDayService dayService)
 {
     this.organizerDbContext = organizerDbContext;
     this.dayService         = dayService;
 }
 public ScheduleService(IOrganizerDbContext organizerDbContext, IScheduleEntryDto scheduleEntryDto)
 {
     this.organizerDbContext = organizerDbContext;
     this.scheduleEntryDto   = scheduleEntryDto;
 }
Example #6
0
 public NoteController(IOrganizerDbContext organizerDbContext, INoteService <INoteDto> noteService)
 {
     _organizerDbContext = organizerDbContext;
     _noteService        = noteService;
 }
 public ToDoService(IOrganizerDbContext organizerDbContext, IToDoDto toDoDto)
 {
     this.organizerDbContext = organizerDbContext;
     this.toDoDto            = toDoDto;
 }