Package model.services

Examples of model.services.MarriageService


    MarriageService mService;
    CPerson p1, p2;

    @Before
    public void setUp() throws Exception {
        mService = new MarriageService();
        p1 = new CPerson("zach", 22, ESex.Male);
        p2 = new CPerson("katie", 20, ESex.Female);
    }
View Full Code Here


* Created by zherr on 1/22/14.
*/
public class MarriageOfficialClient {

    public static void main(String args[]) {
        MarriageService mService = new MarriageService();
        Scanner sc = new Scanner(System.in);

        System.out.println("Welcome to the Marriage client interface.");
        String line = "";
        System.out.println("Please enter 0 to enter a person into the system, 1 to enter marriage management, " +
View Full Code Here

TOP

Related Classes of model.services.MarriageService

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.