Exemple #1
0
 public RoleFeatureController(IRoleFeatureService roleFeatureService
                              , IFeatureService featureService, IRoleService roleService, IUnitOfWork unitOfWork)
 {
     this.roleFeatureService = roleFeatureService;
     this.roleService        = roleService;
     this.featureService     = featureService;
     this.unitOfWork         = unitOfWork;
 }
Exemple #2
0
 public UserProfileController(IUserProfileService service, IRoleService roleService, IDistrictByUserProfileService districtByUserProfileService
                              , IStandingDataService standingDataService, IRoleFeatureService roleFeatureService, IUnitOfWork unitOfWork)
 {
     this.service                      = service;
     this.roleService                  = roleService;
     this.standingDataService          = standingDataService;
     this.roleFeatureService           = roleFeatureService;
     this.districtByUserProfileService = districtByUserProfileService;
     this.unitOfWork                   = unitOfWork;
 }
Exemple #3
0
 public LoginController(IUserProfileService userProfileService
                        , IUserLoginLogService userLoginLogService
                        , IRoleService roleService
                        , IRoleFeatureService roleFeatureService
                        , IUnitOfWork unitOfWork)
 {
     this.userProfileService  = userProfileService;
     this.userLoginLogService = userLoginLogService;
     this.roleService         = roleService;
     this.roleFeatureService  = roleFeatureService;
     this.unitOfWork          = unitOfWork;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SORoleController"/> class.
 /// </summary>
 /// <param name="serviceProvider">The service provider.</param>
 /// <param name="roleService">The role service.</param>
 /// <param name="featureService">The feature service.</param>
 /// <param name="rolePermissionService">The role permission service.</param>
 /// <param name="logger">The logger.</param>
 public SORoleController(
     IServiceProvider serviceProvider,
     IRoleService roleService,
     IFeatureService featureService,
     IRoleFeatureService rolePermissionService,
     ILoggerExtension logger)
 {
     this.serviceProvider       = serviceProvider;
     this.roleService           = roleService;
     this.featureService        = featureService;
     this.rolePermissionService = rolePermissionService;
     this.logger = logger;
 }
Exemple #5
0
 public RoleFeaturesController(IRoleFeatureService roleFeatureService, IUnitOfWork unitOfWork, IMapper mapper)
 {
     _roleFeatureService = roleFeatureService;
     _unitOfWork         = unitOfWork;
     _mapper             = mapper;
 }