Ejemplo n.º 1
0
 public static DataTable GetAllDuesStructure()
 {
     try
     {
         DataKernal.DuesStructure objDuesStructure = new DataKernal.DuesStructure();
         return(objDuesStructure.SelectDuesStructure().Tables[0]);
     }
     catch (System.Exception ex)
     {
         return(null);
     }
 }
Ejemplo n.º 2
0
 public static DataTable GetDuesStructureByID(int intDueAmountID)
 {
     try
     {
         DataKernal.DuesStructure objDuesStructure = new DataKernal.DuesStructure();
         return(objDuesStructure.SelectDuesStructure(intDueAmountID).Tables[0]);
     }
     catch (System.Exception ex)
     {
         return(null);
     }
 }