Ejemplo n.º 1
0
        public string GetInventoryTaxListInCSV(string InputValue, ref string PageInfo)
        {
            COutputValue pInfo = new COutputValue();
            IList <CTax> list  = new CTaxDao().GetInventoryTaxList(InputValue, ref pInfo);

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

            return(list);//<CItems>(list);
        }
Ejemplo n.º 3
0
        public CTax GetInventoryTax(string InputValue)
        {
            CTax list = new CTaxDao().GetInventoryTax(InputValue);

            return(list);
        }
Ejemplo n.º 4
0
        public List <CTax> GetInventoryTaxList(string InputValue, ref COutputValue pOutput)
        {
            IList <CTax> list = new CTaxDao().GetInventoryTaxList(InputValue, ref pOutput);

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