Package model.repos

Examples of model.repos.MarriageRegistry


    CPerson p1, p2;
    CCouple couple1;

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


    private MarriageRegistry registry;
    private PersonRepository repository;

    public MarriageService() {
        registry = new MarriageRegistry();
        repository = new PersonRepository();
    }
View Full Code Here

TOP

Related Classes of model.repos.MarriageRegistry

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.