Пример #1
0
        public List <TC_OA_LingYongMenonyModel> GetTC_OA_LingYongMenonyList(string SortColumns, int StartRecord, int MaxRecords, string BaiEqual, int AuditingEqual)
        {
            List <TC_OA_LingYongMenonyModel> models        = new List <TC_OA_LingYongMenonyModel>();
            TC_OA_LingYongMenonyQueryModel   objQueryModel = new TC_OA_LingYongMenonyQueryModel();

            objQueryModel.StartRecord = StartRecord;
            objQueryModel.MaxRecords  = MaxRecords;
            if (SortColumns == null)
            {
                SortColumns = "";
            }
            objQueryModel.SortColumns   = SortColumns;
            objQueryModel.BaiEqual      = BaiEqual;
            objQueryModel.AuditingEqual = AuditingEqual;
            using (SqlConnection connection = new SqlConnection(FunctionRule.GetConnectionString()))
            {
                try
                {
                    connection.Open();
                    models = new TC_OA_LingYongMenonyBLL().GetModels(objQueryModel, connection);
                    connection.Close();
                }
                catch (SqlException exception)
                {
                    throw exception;
                }
            }
            return(models);
        }
Пример #2
0
        public List <TC_OA_LingYongMenonyModel> GetTC_OA_LingYongMenonyList(TC_OA_LingYongMenonyQueryModel QueryModel)
        {
            List <TC_OA_LingYongMenonyModel> models = new List <TC_OA_LingYongMenonyModel>();

            using (SqlConnection connection = new SqlConnection(FunctionRule.GetConnectionString()))
            {
                try
                {
                    connection.Open();
                    if (QueryModel == null)
                    {
                        QueryModel = new TC_OA_LingYongMenonyQueryModel();
                    }
                    models = new TC_OA_LingYongMenonyBLL().GetModels(QueryModel, connection);
                    connection.Close();
                }
                catch (SqlException exception)
                {
                    throw exception;
                }
            }
            return(models);
        }
Пример #3
0
        public List <TC_OA_LingYongMenonyModel> GetModels(TC_OA_LingYongMenonyQueryModel ObjQueryModel, SqlTransaction Transaction)
        {
            TC_OA_LingYongMenonyDAL ydal = new TC_OA_LingYongMenonyDAL(Transaction);

            return(ydal.Select(ObjQueryModel));
        }