public AdministrationController(IRightsRepository rightsRepository, IRightsToUserRepository rightsToUserRepository,
                                 IModuleRepository moduleRepository, IUserRepository userRepository, IRoleRepository roleRepository,
                                 IRightsToRoleRepository rightsToRoleRepository)
 {
     _rightsRepository       = rightsRepository;
     _rightsToUserRepository = rightsToUserRepository;
     _moduleRepository       = moduleRepository;
     _userRepository         = userRepository;
     _roleRepository         = roleRepository;
     _rightsToRoleRepository = rightsToRoleRepository;
 }
 public RightsController(IRightsRepository rightsRepository, IRightsToUserRepository rightsToUserRepository)
 {
     _rightsRepository       = rightsRepository;
     _rightsToUserRepository = rightsToUserRepository;
 }