public List <Contract> GetEmployeeContractByCondition(string employeeName, DateTime StratTimeFrom, DateTime StratTimeTo, DateTime EndTimeFrom,
                                                              DateTime EndTimeTo, int ContractTypeId, Account Operator, int employeeStatus)
        {
            GetEmployeeContract GetEmployeeContract = new GetEmployeeContract();

            return
                (GetEmployeeContract.GetEmployeeContractByCondition(employeeName, StratTimeFrom, StratTimeTo, EndTimeFrom,
                                                                    EndTimeTo, ContractTypeId, Operator, employeeStatus));
        }
        public List <ApplyAssessCondition> GetApplyAssessConditionByEmployeeContractID(int employeeContractID)
        {
            GetEmployeeContract GetEmployeeContract = new GetEmployeeContract();

            return(GetEmployeeContract.GetApplyAssessConditionByEmployeeContractID(employeeContractID));
        }
        public List <EmployeeContractBookMark> GetEmployeeContractBookMarkByContractTypeID(int ContractTypeId, int accountID)
        {
            GetEmployeeContract GetEmployeeContract = new GetEmployeeContract();

            return(GetEmployeeContract.GetEmployeeContractBookMarkByContractTypeID(ContractTypeId, accountID));
        }
        public List <EmployeeContractBookMark> GetRealEmployeeContractBookMarkByContractID(int contractID)
        {
            GetEmployeeContract GetEmployeeContract = new GetEmployeeContract();

            return(GetEmployeeContract.GetRealEmployeeContractBookMarkByContractID(contractID));
        }
        public List <Contract> GetLastContractByAccountID(int accountID)
        {
            GetEmployeeContract GetEmployeeContract = new GetEmployeeContract();

            return(GetEmployeeContract.GetLastContractByAccountID(accountID));
        }
        public Contract GetEmployeeContractByContractId(int contractId)
        {
            GetEmployeeContract GetEmployeeContract = new GetEmployeeContract();

            return(GetEmployeeContract.GetEmployeeContractByContractId(contractId));
        }