public CreateReligionCommandHandler(IReligionRepository repository, IUnitOfWork unitOfWork, IMapper mapper, IAuthenticatedUserService authenticatedUser)
 {
     _repository        = repository;
     _unitOfWork        = unitOfWork;
     _mapper            = mapper;
     _authenticatedUser = authenticatedUser;
 }
 public ApplicantAdditionalInfoesController(IApplicantRepository applicantRepository, IVeteranCategoryRepository veterancategoryRepository, IMaritalStatusRepository maritalstatusRepository, IGenderRepository genderRepository, IReligionRepository religionRepository, ICurrencyRepository currencyRepository, ISalaryRateTypeRepository salaryratetypeRepository, IEmploymentTypeRepository employmenttypeRepository, IApplicantAdditionalInfoRepository applicantadditionalinfoRepository)
 {
     this.applicantRepository = applicantRepository;
     this.veterancategoryRepository = veterancategoryRepository;
     this.maritalstatusRepository = maritalstatusRepository;
     this.genderRepository = genderRepository;
     this.religionRepository = religionRepository;
     this.currencyRepository = currencyRepository;
     this.salaryratetypeRepository = salaryratetypeRepository;
     this.employmenttypeRepository = employmenttypeRepository;
     this.applicantadditionalinfoRepository = applicantadditionalinfoRepository;
 }
Example #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;
        }
Example #4
0
        public HrSetupController(
            IBankRepository repo4,
            ICostCenterRepository repo6,
            IDegreeRepository repo8,
            IDesignationRepository repo9,
            IEmployeeStatusRepository repo10,
            IEmployeeTypeRepository repo11,
            IFunctionRepository repo12,
            IGazettedHolidaysRepository repo13,
            IGroupRepository repo15,
            ILanguageRepository repo16,
            IManagementLevelRepository repo18,
            IRelationRepository repo20,
            IReligionRepository repo21,
            ISkillLevelRepository repo24,
            IUniversityRepository repo25,
            IWorkExperienceRepository repo26,
            IUserDocumentRepository repo27,
            IUserPhotoRepository repo28,
            IUserCompanyRepository repo29,
            IDependantsRelationRepository repo30

            )
        {
            Bank_repo               = repo4;
            CostCenter_repo         = repo6;
            Degree_repo             = repo8;
            Designation_repo        = repo9;
            EmpStatus_repo          = repo10;
            EmpType_repo            = repo11;
            Func_repo               = repo12;
            Holiday_repo            = repo13;
            Group_repo              = repo15;
            Lang_repo               = repo16;
            MngLvl_repo             = repo18;
            Relation_repo           = repo20;
            Religion_repo           = repo21;
            SkillLevel_repo         = repo24;
            Uni_repo                = repo25;
            wexp_repo               = repo26;
            Doc_repo                = repo27;
            Photo_repo              = repo28;
            UserCompany_repo        = repo29;
            Dependantsrelation_repo = repo30;
        }
 public EmployeeService(IContext context,
                        IEmployeeRepository repository,
                        ICountryRepository countryRepository,
                        IEthnicGroupRepository ethnicGroupRepository,
                        IReligionRepository religionRepository,
                        IEducationRepository educationRepository,
                        ISkillRepository skillRepository,
                        ISalaryHistoryRepository salaryHistoryrepository,
                        IEmployeeSkillRepository employeeSkillRepository
                        )
     : base(context, repository)
 {
     _repository                   = repository;
     this._countryRepository       = countryRepository;
     this._ethnicGroupRepository   = ethnicGroupRepository;
     this._religionRepository      = religionRepository;
     this._educationRepository     = educationRepository;
     this._skillRepository         = skillRepository;
     this._employeeSkillRepository = employeeSkillRepository;
     _context = context;
 }
Example #6
0
 public ReligionController(ILogger <ReligionController> logger,
                           IReligionRepository religionRepository)
 {
     _logger = logger;
     this.religionRepository = religionRepository;
 }
Example #7
0
 public ReligionController(IReligionRepository religionRepository)
 {
     this.religionRepository = religionRepository;
 }
Example #8
0
 public GetCategoryByIdQueryHandler(IReligionRepository repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
Example #9
0
 public ReligionBusiness(IReligionRepository ReligionRes)
 {
     _res = ReligionRes;
 }
 public UpdateCategoryCommandHandler(IReligionRepository categoryRepository, IUnitOfWork unitOfWork, IMapper mapper)
 {
     _categoryRepository = categoryRepository;
     _unitOfWork         = unitOfWork;
     _mapper             = mapper;
 }
 public ReligionService(IReligionRepository religionRepository)
 {
     _religionRepository = religionRepository;
 }
Example #12
0
 public ReligionService(IReligionRepository religionRepository)
 {
     religionRepositoryobj = religionRepository;
 }
Example #13
0
 public ReligionsController(IReligionRepository religionRepository)
 {
     _religionRepository = religionRepository;
 }
 public DeleteReligionCommandHandler(IReligionRepository categoryRepository, IUnitOfWork unitOfWork)
 {
     _categoryRepository = categoryRepository;
     _unitOfWork         = unitOfWork;
 }
 public ReligionService(IContext context, IReligionRepository repository)
     : base(context, repository)
 {
     _repository = repository;
     _context    = context;
 }
Example #16
0
 public ReligionController(IReligionRepository religion, IUnitOfWork uow)
 {
     _religion = religion;
     _uow      = uow;
 }
Example #17
0
 public GetAllQueryHandler(IReligionRepository repository)
 {
     _repository = repository;
 }