Beispiel #1
0
 public RolesController(
     INotificationHandler <DomainNotification> notifications,
     IMediatorHandler mediator,
     IRoleManagerAppService roleManagerAppService) : base(notifications, mediator)
 {
     _roleManagerAppService = roleManagerAppService;
 }
 public UserAdminController(
     INotificationHandler <DomainNotification> notifications,
     IMediatorHandler mediator,
     IUserManageAppService userManageAppService,
     ISystemUser user,
     IRoleManagerAppService roleManagerAppService) : base(notifications, mediator)
 {
     _userManageAppService = userManageAppService;
     _user = user;
 }