Example #1
0
 public List <Billing_Header_Info> Billing_GetAll()
 {
     try
     {
         Billing_DA _da = new Billing_DA();
         DataSet    _ds = _da.Billing_GetAll();
         return(CBO <Billing_Header_Info> .FillCollectionFromDataSet(_ds));
     }
     catch (Exception ex)
     {
         Logger.LogException(ex);
         return(new List <Billing_Header_Info>());
     }
 }