Package com.extjs.common.dao

Examples of com.extjs.common.dao.IUserDetails.save()


      userDetail.setFirstName(user.getFirstName());
      userDetail.setLastName(user.getLastName());
      userDetail.setGender(user.getGender());
      userDetail.setUserType("USER");
      userDetail.setEmail(user.getEmail());
      userDetails.save(userDetail);
      return userDetails.getUserDetailByUserName(user.getUserName());
    }catch (Exception ex){
      throw new EmployeeException(ex);
    }
  };
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.