Пример #1
0
        public List<V_EMPLOYEEVIEW> SearchEmailByName(string strCompanyID, string strFilter)
        {
            try
            {
                using (EmployeeBLL bll = new EmployeeBLL())
                {

                    int pageCount = 0;

                    return bll.SearchEmployeesByName(1, 20, "EMPLOYEEID", strFilter, null, strCompanyID, ref pageCount);

                }
            }
            catch (Exception ex)
            {
                SMT.Foundation.Log.Tracer.Debug("SearchEmailByName:" + ex.ToString());
                return null;
            }
        }