Package fing.satode.dominio

Examples of fing.satode.dominio.CalculoIndice


    }
    return listaDTOS;
  }

  public CalculoIndiceDTO getCalculoIndice(Long id) {
    CalculoIndice calculo= IndicesDAO.getInstance().getCalculoIndice(id);
    return calculo.getDTO();
  }
View Full Code Here


    return calculo.getDTO();
  }

 
  public void nuevoCalculoIndice(CalculoIndiceDTO dto) {
    CalculoIndice necesidad= new CalculoIndice(dto);
    IndicesDAO.getInstance().nuevoCalculoIndice(necesidad);
  }
View Full Code Here

    CalculoIndice necesidad= new CalculoIndice(dto);
    IndicesDAO.getInstance().nuevoCalculoIndice(necesidad);
  }

  public void modificarCalculoIndice(CalculoIndiceDTO dto) {
    CalculoIndice necesidad= new CalculoIndice(dto);
    IndicesDAO.getInstance().modificarCalculoIndice(necesidad);
  }
View Full Code Here

    CalculoIndice necesidad= new CalculoIndice(dto);
    IndicesDAO.getInstance().modificarCalculoIndice(necesidad);
  }

  public void eliminarCalculoIndice(CalculoIndiceDTO dto) {
    CalculoIndice necesidad= new CalculoIndice(dto);
    IndicesDAO.getInstance().eliminarCalculoIndice(necesidad);
  }
View Full Code Here

TOP

Related Classes of fing.satode.dominio.CalculoIndice

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.