コード例 #1
0
 public EmployeeController(IEmployeeService _service, IEmployeeDetailService _employeeDetailService, IEmployeeOtherInfoService _employeeOtherInfoService,
                           IBankAccountTypeService _bankAccountTypeService, IAccessTypeService _accessTypeService, IBloodGroupService _bloodGroupService, ICityService _cityService,
                           IContractTypeService _contractType, ICountryService _countryService, IDisabilitySituationService _disabilitySituationService, IEducationLevelService _educationLevelService,
                           IEducationStatusService _educationStatusService, IEmploymentTypeService _employmentTypeService, IGenderService _genderService,
                           IMaritalStatusService _maritalStatusService, IPositionService _positionService, ICompanyService _companyService, ICompanyBranchService _companyBranchService, ICompanyDepartmentService _companyDepartmentService,
                           IEmployeePositionService _employeePositionService
                           )
 {
     service = _service;
     employeeDetailService    = _employeeDetailService;
     employeeOtherInfoService = _employeeOtherInfoService;
     employeePositionService  = _employeePositionService;
     bankAccountTypeService   = _bankAccountTypeService;
     accessTypeService        = _accessTypeService;
     bloodGroupService        = _bloodGroupService;
     cityService                = _cityService;
     contractType               = _contractType;
     countryService             = _countryService;
     disabilitySituationService = _disabilitySituationService;
     educationLevelService      = _educationLevelService;
     educationStatusService     = _educationStatusService;
     employmentTypeService      = _employmentTypeService;
     genderService              = _genderService;
     maritalStatusService       = _maritalStatusService;
     positionService            = _positionService;
     companyService             = _companyService;
     companyBranchService       = _companyBranchService;
     companyDepartmentService   = _companyDepartmentService;
 }
コード例 #2
0
 public CompanyController(ICompanyBankDetailsService compbnkservice, ICityService cityservice, IStateService stateservice, IUtilityService utilityservice,
                          IBankService bankservice, ICompanyService companyService, IBankAccountTypeService bankAccountTypeService, IBankNameService bankNameService,
                          IUserCredentialService usercredentialservice, IModuleService iIModuleService, IUserService userService, IEmployeeMasterService employeeMasterService, IEmployeesCompanyService EmployeesCompanyService)
 {
     this._bankAccountTypeService  = bankAccountTypeService;
     this._bankNameService         = bankNameService;
     this._companyService          = companyService;
     this._utilityservice          = utilityservice;
     this._bankService             = bankservice;
     this._stateservice            = stateservice;
     this._cityservice             = cityservice;
     this._compbankservice         = compbnkservice;
     this._IUserCredentialService  = usercredentialservice;
     this._iIModuleService         = iIModuleService;
     this._userService             = userService;
     this._employeeMasterService   = employeeMasterService;
     this._EmployeesCompanyService = EmployeesCompanyService;
 }
 public BankAccountTypeController(IBankAccountTypeService _IBankAccountTypeService, IServiceFactory serviceFactory) : base(serviceFactory)
 {
     _interface = _IBankAccountTypeService;
 }
コード例 #4
0
 public BankAccountTypesController(IBankAccountTypeService _service)
 {
     service = _service;
 }
コード例 #5
0
 public BankAccountTypeController([FromServices] IContextFactory contextFactory, [FromServices] IBankAccountTypeService bankAccountTypeService)
 {
     _contextFactory         = contextFactory;
     _bankAccountTypeService = bankAccountTypeService;
 }
コード例 #6
0
 public BankAccountController(IBankAccountService bankAccountService, IBankAccountTypeService bankAccountTypeService)
 {
     _bankAccountService     = bankAccountService;
     _bankAccountTypeService = bankAccountTypeService;
 }
コード例 #7
0
 public BankAccountTypesViewComponent(IBankAccountTypeService _bankAccountTypeService)
 {
     bankAccountTypeService = _bankAccountTypeService;
 }