Package by.fly.model

Examples of by.fly.model.Organization


    OrganizationRepository organizationRepository;

    @Test
    @Rollback(false)
    public void createDefaultOrganization() {
        Organization organization = new Organization("fly");
        organization.setInn("111");
        organizationRepository.save(organization);
    }
View Full Code Here


    public Organization getRootOrganization() {
        if (repository.count() > 0) {
            return repository.findAll().iterator().next();
        }
        Organization organization = new Organization("ЦЗК");
        return repository.save(organization);
    }
View Full Code Here

TOP

Related Classes of by.fly.model.Organization

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.