Exemple #1
0
        public List <V_MaterialInventoryIOModel> GetModels(V_MaterialInventoryIOQueryModel ObjQueryModel, SqlTransaction Transaction)
        {
            List <V_MaterialInventoryIOModel> list;

            try
            {
                list = new V_MaterialInventoryIODAL(Transaction).Select(ObjQueryModel);
            }
            catch (Exception exception)
            {
                throw exception;
            }
            return(list);
        }
Exemple #2
0
        public List <V_MaterialInventoryIOModel> GetModels(SqlConnection Connection)
        {
            List <V_MaterialInventoryIOModel> list;

            try
            {
                list = new V_MaterialInventoryIODAL(Connection).Select();
            }
            catch (Exception exception)
            {
                throw exception;
            }
            return(list);
        }