Examples of CalculoIndice


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

Examples of fing.satode.dominio.CalculoIndice

    return calculo.getDTO();
  }

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

Examples of fing.satode.dominio.CalculoIndice

    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

Examples of fing.satode.dominio.CalculoIndice

    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
Copyright © 2018 www.massapi.com. 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.