예제 #1
0
 public NotebookService(DataContext dataContext, NoteService noteService, IDistributedIdGenerator IdGenerator)
 {
     this.IdGenerator = IdGenerator;
     this.dataContext = dataContext;
     this.NoteService = noteService;
 }
예제 #2
0
 public TrashService(DataContext dataContext, NoteService noteService)
 {
     this.dataContext = dataContext;
     this.noteService = noteService;
 }