Example #1
0
 public static SectorDAO getInstance()
 {
     if (daoSector == null)
     {
         daoSector = new SectorDAO();
     }
     return(daoSector);
 }
Example #2
0
 public bool RegistrarMediciones(Sector objSector)
 {
     try
     {
         return(SectorDAO.getInstance().RegistrarMediciones(objSector));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }