示例#1
0
        public List <POItemList> AllPOItem(int?Division)
        {
            List <POItemList> designation = new List <POItemList>();

            try
            {
                designation = _repository.AllPOItem(Division);
            }

            catch (Exception ex)
            {
                throw;
            }

            return(designation);
        }