public static CustomerAccountingInfoCollection DeleteCustomerDetail(int id)
        {
            CustomerAccountingInfoCollection collection = new CustomerAccountingInfoCollection();

            collection.DeleteCustomerDetail(id);
            return(collection);
        }
        //public static CustomerAccountingInfo GetCustomerDetail(int id)
        //{
        //    return new CustomerAccountingInfo(id);
        //}

        public static CustomerAccountingInfoCollection LoadList()
        {
            CustomerAccountingInfoCollection collection = new CustomerAccountingInfoCollection();

            collection.LoadAll();
            return(collection);
        }