Skip to content
Advertisement

Tag: repository-pattern

Repository Pattern with Repository Factory

I’m trying to improve my Android persistence layer to be used across multiple applications. What i have done so far is to setup a base repository abstract class and also a base repository interface, the complete code can be check here: https://github.com/grmaciel/android-repository-ormlite Interface: Now all my repositories extends my base repository, like this: What i’m trying to achieve now is

Advertisement