Beispiel #1
0
 public RoleService(IRoleRepository roleRepository, IUserRepository userRepository, IFunctionRepository functionRepository, ISubRealmRepository subRealmRepository, IMapper mapper)
 {
     this.roleRepository     = roleRepository;
     this.userRepository     = userRepository;
     this.functionRepository = functionRepository;
     this.subRealmRepository = subRealmRepository;
     this.mapper             = mapper;
 }
Beispiel #2
0
 public ProfileService(IUserRepository userRepository, ITeamRepository teamRepository, IRoleRepository roleRepository, ISubRealmRepository subRealmRepository, IProfileRepository profileRepository, IMapper mapper)
 {
     this.userRepository     = userRepository;
     this.teamRepository     = teamRepository;
     this.roleRepository     = roleRepository;
     this.subRealmRepository = subRealmRepository;
     this.profileRepository  = profileRepository;
     this.mapper             = mapper;
 }