示例#1
0
 public CasesController(IJudgesService judgesService, ITrusteesService trusteeService, UserManager <ApplicationUser> userManager, ICasesService casesService, IClientsService clientsService)
 {
     this.userManager    = userManager;
     this.judgesService  = judgesService;
     this.trusteeService = trusteeService;
     this.casesService   = casesService;
     this.clientsService = clientsService;
 }
示例#2
0
 public TrusteesController(ITrusteesService trusteesService)
 {
     this.trusteesService = trusteesService;
 }