Ejemplo n.º 1
0
        public string GetInventoryItemGroupListInCSV(string InputValue, ref string PageInfo)
        {
            COutputValue       pInfo = new COutputValue();
            IList <CItemGroup> list  = new CItemsDao().GetInventoryItemGroupList(InputValue, ref pInfo);

            PageInfo = pInfo.ToCSV();
            return(CItemGroup.ToCSV <CItemGroup>(list));
        }
Ejemplo n.º 2
0
        public CApplicationMessage UpdateInventoryItemGroup(string InputValue)
        {
            CApplicationMessage list = new CItemsDao().UpdateInventoryItemGroup(InputValue);

            return(list);//<CItems>(list);
        }
Ejemplo n.º 3
0
        public CItemGroup GetInventoryItemGroup(string InputValue)
        {
            CItemGroup list = new CItemsDao().GetInventoryItemGroup(InputValue);

            return(list);
        }
Ejemplo n.º 4
0
        public List <CItemGroup> GetInventoryItemGroupList(string InputValue, ref COutputValue Output)
        {
            IList <CItemGroup> list = new CItemsDao().GetInventoryItemGroupList(InputValue, ref Output);

            return((List <CItemGroup>)(list));
        }
Ejemplo n.º 5
0
        public CItems GetInventoryItem(string InputValue)
        {
            CItems list = new CItemsDao().GetInventoryItem(InputValue);

            return(list);//<CItems>(list);
        }
Ejemplo n.º 6
0
        public List <CItems> GetInventoryItemsList(string InputValue, ref COutputValue Output)
        {
            IList <CItems> list = new CItemsDao().GetInventoryItemsList(InputValue, ref Output);

            return((List <CItems>)list);
        }