Package com.degloba.boundedContext.domain.modalpanel

Examples of com.degloba.boundedContext.domain.modalpanel.Modalpanel.changeStatus()


    Modalpanel modalpanel = new Modalpanel();
    //modalpanel.setAggregateId(command.getModalpanelId());
    modalpanel.setActiu(true);
    modalpanel.setDescripcio("hola");
    modalpanel.setTitol("titol hora");
    modalpanel.changeStatus(Modalpanel.ModalpanelStatus.VIP);
     
    this.modalpanelRepository.save(modalpanel);
   
    Person person = new Person();
    person.setFirstName("pere");
View Full Code Here


  private IModalpanelRepository<Long> modalpanelRepository;

  @Override
  public Void handle(ChangeModalpanelStatusCommand command) {
    Modalpanel modalpanel = modalpanelRepository.load(command.getModalpanelId());
    modalpanel.changeStatus(command.getStatus());
    modalpanelRepository.save(modalpanel);   
    return null;
  }

}
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.