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