public StopPaymentEmployeeInfo Get(int id)
        {
            string strStatus             = EmployeeStopPayment_State.社保专员已提取.ToString();
            StopPaymentEmployeeInfo item = m_BLL.GetStopPaymentEmployeeInfoForStop(id, strStatus);

            return(item);
        }
Exemple #2
0
        /// <summary>
        /// 根据ID获取数据模型
        /// </summary>
        /// <param name="id">企业员工编号</param>
        /// <returns></returns>
        public StopPaymentEmployeeInfo Get(int id)
        {
            StopPaymentEmployeeInfo item = m_BLL.GetStopPaymentEmployeeInfo(id);

            return(item);
        }
Exemple #3
0
        /// <summary>
        /// 根据ID获取数据模型
        /// </summary>
        /// <param name="id">企业员工编号</param>
        /// <returns></returns>
        public StopPaymentEmployeeInfo Get(int id, string State)
        {
            StopPaymentEmployeeInfo item = m_BLL.GetStopPaymentEmployeeInfoForStop(id, State);

            return(item);
        }