예제 #1
0
 public RoleApp(IRoleRepository roleRepository, IRoleAuthenticationApp roleAuthApp, IAccountRoleApp accountRoleApp)
 {
     this.roleRepository = roleRepository;
     this.roleAuthApp    = roleAuthApp;
     this.accountRoleApp = accountRoleApp;
 }
 public ClientDataController(IRoleAuthenticationApp roleAuthApp)
 {
     this.roleAuthApp = roleAuthApp;
 }
 public RoleAuthenticationController(IRoleAuthenticationApp roleAuthApp)
 {
     this.roleAuthApp = roleAuthApp;
 }