Examples of mUserInfo


Examples of com.softserve.academy.food.model.mUserInfo

  @Override
  @Transactional
  public mUserInfo getUserInfo(int id)
  {
    return new mUserInfo( daoUser.Read( id ) );
  }
View Full Code Here

Examples of com.softserve.academy.food.model.mUserInfo

  }
 
  @Transactional
  public mUserInfo getUser(String login)
  {
    mUserInfo user = new mUserInfo( daoUser.getUser(login) );
   
    return user;
  }
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.