public SecurityContractApplicationService(IApplicationRepository applicationRepository, IIdentityApiResourceRepository identityApiResourceRespository, IPermissionRepository permissionRepository, IApplicationFunctionRepository applicationFunctionRepository, IApplicationDataPolicyRepository applicationDataPolicyRepository)
 {
     this.applicationRepository           = applicationRepository;
     this.identityApiResourceRespository  = identityApiResourceRespository;
     this.permissionRepository            = permissionRepository;
     this.applicationFunctionRepository   = applicationFunctionRepository;
     this.applicationDataPolicyRepository = applicationDataPolicyRepository;
 }
Пример #2
0
 public ApplicationFunctionService(IApplicationFunctionRepository applicationFunctionRepository, IMapper mapper)
 {
     this.applicationFunctionRepository = applicationFunctionRepository;
     this.mapper = mapper;
 }