Package edu.umbc.ultra.logic.Patient

Examples of edu.umbc.ultra.logic.Patient.Gender


    }
    catch (ParseException e) {
      DoB = new Date();
    }
   
    Gender gender = Patient.getGenderFromString(req.getParameter("gender"));
    patient = new Patient(first, last, DoB, gender);

    // Gets the active user.
   
    // Get an instance of the UserService
View Full Code Here

TOP

Related Classes of edu.umbc.ultra.logic.Patient.Gender

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.