Example #1
0
        public List <CCustomerGroup> GetCustomerGroupList(string InputValue, ref COutputValue Output)
        {
            IList <CCustomerGroup> list = new CCustomerDao().GetCustomerGroupList(InputValue, ref Output);

            return((List <CCustomerGroup>)(list));
        }
Example #2
0
        public CApplicationMessage UpdateCustomerGroup(string InputValue)
        {
            CApplicationMessage list = new CCustomerDao().UpdateCustomerGroup(InputValue);

            return(list);//<CItems>(list);
        }
Example #3
0
        public List <CCustomer> GetCustomerList(string InputValue, ref COutputValue pOutput)
        {
            IList <CCustomer> list = new CCustomerDao().GetCustomerList(InputValue, ref pOutput);

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