Example #1
0
        public List <TC_OA_BigGoodsDetailModel> GetTC_OA_BigGoodsDetailList(string SortColumns, int StartRecord, int MaxRecords, string MastCodeEqual, int IsSubmitEqual)
        {
            List <TC_OA_BigGoodsDetailModel> models        = new List <TC_OA_BigGoodsDetailModel>();
            TC_OA_BigGoodsDetailQueryModel   objQueryModel = new TC_OA_BigGoodsDetailQueryModel();

            objQueryModel.StartRecord = StartRecord;
            objQueryModel.MaxRecords  = MaxRecords;
            if (SortColumns == null)
            {
                SortColumns = "";
            }
            objQueryModel.SortColumns   = SortColumns;
            objQueryModel.MastCodeEqual = MastCodeEqual;
            objQueryModel.IsSubmitEqual = IsSubmitEqual;
            using (SqlConnection connection = new SqlConnection(FunctionRule.GetConnectionString()))
            {
                try
                {
                    connection.Open();
                    models = new TC_OA_BigGoodsDetailBLL().GetModels(objQueryModel, connection);
                    connection.Close();
                }
                catch (SqlException exception)
                {
                    throw exception;
                }
            }
            return(models);
        }
Example #2
0
        public List <TC_OA_BigGoodsDetailModel> GetTC_OA_BigGoodsDetailList(TC_OA_BigGoodsDetailQueryModel QueryModel)
        {
            List <TC_OA_BigGoodsDetailModel> models = new List <TC_OA_BigGoodsDetailModel>();

            using (SqlConnection connection = new SqlConnection(FunctionRule.GetConnectionString()))
            {
                try
                {
                    connection.Open();
                    if (QueryModel == null)
                    {
                        QueryModel = new TC_OA_BigGoodsDetailQueryModel();
                    }
                    models = new TC_OA_BigGoodsDetailBLL().GetModels(QueryModel, connection);
                    connection.Close();
                }
                catch (SqlException exception)
                {
                    throw exception;
                }
            }
            return(models);
        }
Example #3
0
        public List <TC_OA_BigGoodsDetailModel> GetModels(TC_OA_BigGoodsDetailQueryModel ObjQueryModel, SqlTransaction Transaction)
        {
            TC_OA_BigGoodsDetailDAL ldal = new TC_OA_BigGoodsDetailDAL(Transaction);

            return(ldal.Select(ObjQueryModel));
        }