Example #1
0
        public List <YF_AssetManageModel> GetModels(SqlTransaction Transaction)
        {
            YF_AssetManageDAL edal = new YF_AssetManageDAL(Transaction);

            return(edal.Select());
        }
Example #2
0
        public List <YF_AssetManageModel> GetModels(YF_AssetManageQueryModel ObjQueryModel, SqlTransaction Transaction)
        {
            YF_AssetManageDAL edal = new YF_AssetManageDAL(Transaction);

            return(edal.Select(ObjQueryModel));
        }
Example #3
0
        public List <YF_AssetManageModel> GetModels(SqlConnection Connection)
        {
            YF_AssetManageDAL edal = new YF_AssetManageDAL(Connection);

            return(edal.Select());
        }