コード例 #1
0
ファイル: JobTypesController.cs プロジェクト: rec2020/REC
 public JobTypesController(NajmetAlraqeeContext context, IJobTypeReository jobtype, IMapper mapper, IToastNotification toastNotification)
 {
     _context           = context;
     _jobtype           = jobtype;
     _mapper            = mapper;
     _toastNotification = toastNotification;
 }
コード例 #2
0
 public ForeignAgencyJobController(IForeignAgencyRepository agency,
                                   IMapper mapper, IForeignAgencyJobRepository agency_job,
                                   IToastNotification toastNotification
                                   , INationalityRepository nationality, IBankDetailRepository bank, ICurrencyRepository currency, IJobTypeReository jobtype)
 {
     _agency            = agency;
     _mapper            = mapper;
     _toastNotification = toastNotification;
     _nationality       = nationality;
     _jobtype           = jobtype;
     _currency          = currency;
     _agency_job        = agency_job;
 }
コード例 #3
0
        public EmployeeController(NajmetAlraqeeContext context, IForeignAgencyRepository foreignagency, IJobTypeReository jobtype, IReligionRepository religion, ISocialStatusRepository socialstatus, IGenderRepository gender, INationalityRepository nationality, IEmployeeRepository emp, IMapper mapper, IToastNotification toastNotification)
        {
            _context           = context;
            _mapper            = mapper;
            _toastNotification = toastNotification;
            _emp          = emp;
            _nationality  = nationality;
            _gender       = gender;
            _socialstatus = socialstatus;
            _religion     = religion;

            _foreignagency = foreignagency;
            _jobtype       = jobtype;
        }
コード例 #4
0
 public SpecificContractsController(ICityRepository city, IContractTypeRepository contract_Type, ICountryRepository country, IForeignAgencyRepository agency, IEmployeeRepository emp, IReceiptDocRepository receipt, IContractSelectRepository select, IUserRepository user, IContractHistoryRepository history, IContractTicketRepository ticket, IContractVisaRepository visa, IContractDelegateRepository deleg, IJobTypeReository jobtype, ICustomerRepository customer, INationalityRepository nationality, ISpecificContractRepository contract, IMapper mapper, IToastNotification toastNotification)
 {
     _contract_Type     = contract_Type;
     _receipt           = receipt;
     _Contract          = contract;
     _mapper            = mapper;
     _toastNotification = toastNotification;
     _nationality       = nationality;
     _customer          = customer;
     _city     = city;
     _country  = country;
     _jobtype  = jobtype;
     _select   = select;
     _delegate = deleg;
     _visa     = visa;
     _ticket   = ticket;
     _history  = history;
     _user     = user;
     _emp      = emp;
     _agency   = agency;
 }