All Downloads are FREE. Search and download functionalities are using the official Maven repository.

poussecafe.doc.model.servicedoc.ServiceDocRepository Maven / Gradle / Ivy

There is a newer version: 0.29.0
Show newest version
package poussecafe.doc.model.servicedoc;

import java.util.List;
import poussecafe.doc.model.boundedcontextdoc.BoundedContextDocId;
import poussecafe.domain.Repository;

public class ServiceDocRepository extends Repository {

    public List findByBoundedContextId(BoundedContextDocId id) {
        return wrap(dataAccess().findByBoundedContextId(id));
    }

    @Override
    public ServiceDocDataAccess dataAccess() {
        return (ServiceDocDataAccess) super.dataAccess();
    }

    public List findAll() {
        return wrap(dataAccess().findAll());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy