public DelegationsController(
     IDelegationService delegationService,
     IDelegationValidationService delegationValidationService)
 {
     _delegationService           = delegationService;
     _delegationValidationService = delegationValidationService;
 }
 public DelegationController(IDelegationService delegService, IEmployeeService empService, ILogger <DelegationController> logger, IHostEnvironment host)
 {
     _delegService = delegService;
     _empService   = empService;
     _logger       = logger;
     _host         = host;
 }
 public WorkflowTrackerService(IUnitOfWork uow, IAccountService accountService, IEmplService emplService, IDelegationService delegationService)
 {
     _uow               = uow;
     repo               = uow.GetRepository <WFTrackerTable>();
     _AccountService    = accountService;
     _EmplService       = emplService;
     _DelegationService = delegationService;
 }
Beispiel #4
0
 public DelegationController(IDelegationService service, ICompanyService companyService,
                             IGroupProcessService groupProcessService, IProcessService processService, IEmplService emplService, IEmailService emailService)
 {
     _Service             = service;
     _CompanyService      = companyService;
     _GroupProcessService = groupProcessService;
     _ProcessService      = processService;
     _EmplService         = emplService;
     _EmailService        = emailService;
 }
 public DelegationEvidenceController(
     IDelegationService delegationService,
     IDelegationTranslateService delegationTranslateService,
     IDelegationMaskValidationService delegationMaskValidationService,
     IDelegationJwtBuilder delegationJwtBuilder)
 {
     _delegationService               = delegationService;
     _delegationTranslateService      = delegationTranslateService;
     _delegationMaskValidationService = delegationMaskValidationService;
     _delegationJwtBuilder            = delegationJwtBuilder;
 }
 public DelegationsController(
     IDelegationService delegationService,
     IDelegationValidationService delegationValidationService,
     IDelegationTranslateService delegationTranslateService,
     IDelegationMaskValidationService delegationMaskValidationService)
 {
     _delegationService               = delegationService;
     _delegationValidationService     = delegationValidationService;
     _delegationTranslateService      = delegationTranslateService;
     _delegationMaskValidationService = delegationMaskValidationService;
 }
Beispiel #7
0
 public DelegationEvidenceController(
     IDelegationService delegationService,
     IDelegationTranslateService delegationTranslateService,
     IDelegationMaskValidationService delegationMaskValidationService,
     IPreviousStepsValdiationService previousStepsValdiationService)
 {
     _delegationService               = delegationService;
     _delegationTranslateService      = delegationTranslateService;
     _delegationMaskValidationService = delegationMaskValidationService;
     _previousStepsValdiationService  = previousStepsValdiationService;
 }
Beispiel #8
0
 public DelegationViewController(ICatalogService catalogService,
                                 IDelegationService delegationService,
                                 IUserTypeService userTypeService,
                                 IDocumentManagementService documentManagementService,
                                 IAuthorizationManager authorizationManager)
 {
     _catalogService        = catalogService;
     _delegationService     = delegationService;
     _userTypeService       = userTypeService;
     _viewModelMapperHelper =
         new Models.Delegation.ViewModelMapperHelper(ViewBag, _delegationService);
     _authorizeAllViewModelMapperHelper = new ViewModelMapperHelper();
     _documentManagementService         = documentManagementService;
     _authorizationManager = authorizationManager;
 }
Beispiel #9
0
 public DelegationsApiController(IAuthorizationService authorizationService, IDelegationService delegationService, IRoleService roleService,
                                 IAdminUserRoleService adminUserRoleService, IGroupService groupService, ICustomerSettingsService customerSettingsService,
                                 IConnectionInfo connectionInfo, IAuditService auditService, IUserService userService)
 {
     _authorizationService    = authorizationService;
     _delegationService       = delegationService;
     _roleService             = roleService;
     _adminUserRoleService    = adminUserRoleService;
     _groupService            = groupService;
     _connectionInfo          = connectionInfo;
     _customerSettingsService = customerSettingsService;
     _auditService            = auditService;
     _auditHelper             = new AuditHelper();
     _userService             = userService;
 }
Beispiel #10
0
 public DocumentService(IUnitOfWork uow, INumberSeqService numberSeqService, IProcessService processService,
                        IAccountService accountService, IEmplService emplService, IWorkflowTrackerService workflowTrackerService,
                        IDelegationService delegationService, IDocumentReaderService documentReaderService, IWorkScheduleService workScheduleService)
 {
     _uow                    = uow;
     repoProcess             = uow.GetRepository <ProcessTable>();
     repoDocument            = uow.GetRepository <DocumentTable>();
     repoFile                = uow.GetRepository <FileTable>();
     _NumberSeqService       = numberSeqService;
     _ProcessService         = processService;
     _AccountService         = accountService;
     _EmplService            = emplService;
     _WorkflowTrackerService = workflowTrackerService;
     _DelegationService      = delegationService;
     _DocumentReaderService  = documentReaderService;
     _WorkScheduleService    = workScheduleService;
 }
Beispiel #11
0
 public CheckEmployeeDelegationPermission(IDelegationService delegService, IEmployeeService empService)
 {
     _delegService = delegService;
     _empService   = empService;
 }
 public DelegationSaveController(IDelegationService delegationService)
 {
     _delegationService = delegationService;
 }
 public ViewModelMapperHelper(dynamic viewBag, IDelegationService delegationService)
 {
     _viewBag           = viewBag;
     _delegationService = delegationService;
 }
Beispiel #14
0
 public DelegationValidationService(IDelegationService delegationService)
 {
     _delegationService = delegationService;
 }
 public ViewModelMapperHelper(ICatalogService catalogService,
                              IDelegationService delegationService)
 {
     _catalogService    = catalogService;
     _delegationService = delegationService;
 }
Beispiel #16
0
 public DelegationBLL(IUnitOfWork uow)
 {
     _uow = uow;
     _DelegationService = new DelegationService(uow);
 }