Ejemplo n.º 1
0
 public CommitteeController(IBranchAppService branchService, IIDMAppService iDMAppService, ICommitteeAppService committeeApplication, IMapper mapper, IOptionsSnapshot <RootConfigurations> rootConfiguration) : base(rootConfiguration)
 {
     _committeeApplication = committeeApplication;
     _branchService        = branchService;
     _iDMAppService        = iDMAppService;
     _mapper = mapper;
 }
Ejemplo n.º 2
0
 public ManageUsersAssignationController(IManageUsersAssignationAppService usersService, IIDMAppService iDMAppService, ICommitteeAppService committeeApplication, IBranchAppService branchService, IOptionsSnapshot <RootConfigurations> rootConfiguration) : base(rootConfiguration)
 {
     _iDMAppService        = iDMAppService;
     _usersService         = usersService;
     _branchService        = branchService;
     _committeeApplication = committeeApplication;
 }
Ejemplo n.º 3
0
 public ManageVendorsController(IMapper mapper, IIDMAppService iDMAppService, ICommitteeAppService committeeApplication, IBranchAppService branchService, ISupplierService supplierService, IOptionsSnapshot <RootConfigurations> rootConfiguration) : base(rootConfiguration)
 {
     _iDMAppService        = iDMAppService;
     _mapper               = mapper;
     _branchService        = branchService;
     _committeeApplication = committeeApplication;
     _supplierService      = supplierService;
 }