Package br.com.cwi.tnt.rfp.arquitetura3.web.controller

Examples of br.com.cwi.tnt.rfp.arquitetura3.web.controller.IndexController


    public void salvarSingleRow(){
        this.singleRowEntity = this.demoService.salvarSingleRowEntity(singleRowEntity);
    }
   
    public void novoGridEntity(){
        this.gridEdit = new GridEntity();
    }
View Full Code Here


    public SingleRowEntity obterSingleRowEntity() {
        List<SingleRowEntity> lista = singleRowEntityDataRepository.findAll();
        if(!lista.isEmpty()){
            return lista.get(0);
        }
        return new SingleRowEntity();
    }
View Full Code Here

TOP

Related Classes of br.com.cwi.tnt.rfp.arquitetura3.web.controller.IndexController

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.