public CreateController(NoteRepos noteRepos, UserRepos userRepos, AppDbContext auc, ServiceRepos servicesRepos, SpecRepos specRepos)

        {
            this.noteRepos     = noteRepos;
            this.userRepos     = userRepos;
            this.specRepos     = specRepos;
            this.servicesRepos = servicesRepos;
            this.auc           = auc;
        }
示例#2
0
 public HomeController(NoteRepos noteRepos)
 {
     this.noteRepos = noteRepos;
 }