示例#1
0
 public NoteManager(INoteRepos noteRepo)
 {
     this.noteRepo = noteRepo;
 }
示例#2
0
 public NoteService(INoteRepos noteRepos, IUnitOfWork unitOfWork)
 {
     this._noteRepos  = noteRepos;
     this._unitOfWork = unitOfWork;
 }