Package it.pdor.gestionePratica.domain

Examples of it.pdor.gestionePratica.domain.MovimentoRimborsoGraduato


   
    if (movimento instanceof TrancheMutuoSal) {
      TrancheMutuoSal tranche = (TrancheMutuoSal) movimento;
      return copiaTrancheSalInMovimentoPdA(tranche);
    }else if (movimento instanceof MovimentoRimborsoGraduato) {
      MovimentoRimborsoGraduato mrg = (MovimentoRimborsoGraduato)movimento;
      return copiaMovRimbGradInMovRimbGrad(mrg);
    }else if (movimento instanceof MovRimbTrad) {
      MovRimbTrad mrt = (MovRimbTrad)movimento;
      return copiaMovRimbTradInMovRimbTrad(mrt);
    }
View Full Code Here


    }
   
    fin.setPam(pam);
   
    if (tranche instanceof MovimentoRimborsoGraduato) {
      MovimentoRimborsoGraduato rimbgrad = (MovimentoRimborsoGraduato) tranche;
      if(rimbgrad.getDataRicalcolo() != null)
        fin.setDataRiferimento(rimbgrad.getDataRicalcolo());
    }
   
    return fin;
  }
View Full Code Here

TOP

Related Classes of it.pdor.gestionePratica.domain.MovimentoRimborsoGraduato

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.