public DentistsController(UserManager <ApplicationUser> userManager,
                           ApplicationDbContext db,
                           IDentistsService dentistsService)
 {
     this.userManager     = userManager;
     this.db              = db;
     this.dentistsService = dentistsService;
 }
示例#2
0
 public DentistsController(IDentistsService dentistsService)
 {
     this.dentistsService = dentistsService;
 }