Esempio n. 1
0
 public JobWorkerController(IJobWorkerService JobWorkerService, IBusinessEntityService BusinessEntityService, IAccountService AccountService, IPersonService PersonService, IPersonRegistrationService PersonRegistrationService, IPersonAddressService PersonAddressService, IPersonProcessService PersonProcessService, IUnitOfWork unitOfWork, IExceptionHandlingService exec)
 {
     _JobWorkerService          = JobWorkerService;
     _PersonService             = PersonService;
     _PersonAddressService      = PersonAddressService;
     _BusinessEntityService     = BusinessEntityService;
     _AccountService            = AccountService;
     _PersonProcessService      = PersonProcessService;
     _PersonRegistrationService = PersonRegistrationService;
     _unitOfWork = unitOfWork;
     _exception  = exec;
 }
Esempio n. 2
0
 public AgentController(IAgentService AgentService, IBusinessEntityService BusinessEntityService, IAccountService AccountService, IPersonService PersonService, IPersonRegistrationService PersonRegistrationService, IPersonAddressService PersonAddressService, IPersonProcessService PersonProcessService, IActivityLogService ActivityLogService, IUnitOfWork unitOfWork, IExceptionHandlingService exec)
 {
     _AgentService              = AgentService;
     _PersonService             = PersonService;
     _PersonAddressService      = PersonAddressService;
     _BusinessEntityService     = BusinessEntityService;
     _AccountService            = AccountService;
     _PersonProcessService      = PersonProcessService;
     _PersonRegistrationService = PersonRegistrationService;
     _ActivityLogService        = ActivityLogService;
     _unitOfWork = unitOfWork;
     _exception  = exec;
 }
Esempio n. 3
0
 public PageController(IPersonRegistrationService personRegistrationService)
 {
     _personRegistrationService = personRegistrationService;
 }
 public PaginationViewComponent(IPersonRegistrationService personRegistrationService)
 {
     _personRegistrationService = personRegistrationService;
 }