Пример #1
0
        public List <CustomerInfo> Customer_GetAll()
        {
            List <CustomerInfo> list = new List <CustomerInfo>();

            try
            {
                CustomerDA _da = new CustomerDA();
                list = CBO <CustomerInfo> .FillCollectionFromDataSet(_da.Customer_GetAll());
            }
            catch (Exception ex)
            {
                NaviCommon.Common.log.Error(ex.ToString());
            }
            return(list);
        }