public ArtworkController(Context context)
 {
     this.artistRepository      = new ArtistRepository(context);
     this.imageRepository       = new ImageRepository(context);
     this.artworkRepository     = new ArtworkRepository(context);
     this.stylesRepository      = new ArtistMovementRepository(context);
     this.artworktypeRepository = new ArtworkTypeRepository(context);
     this.materialRepository    = new MaterialRepository(context);
     this.likesRepository       = new LikesRepository(context);
     this.clientRepository      = new ClientRepository(context);
 }
 public ArtworkController(Context context)
 {
     this.artworkRepository     = new ArtworkRepository(context);
     this.artworkTypeRepository = new ArtworkTypeRepository(context);
     this.countryRepository     = new CountryRepository(context);
     this.styleRepository       = new StyleRepository(context);
     this.materialRepository    = new MaterialRepository(context);
     this.artistRepository      = new ArtistRepository(context);
     this.museumRepository      = new MuseumRepository(context);
     this.likesRepository       = new LikesRepository(context);
     this.imageRepository       = new ImageRepository(context);
     this.collectionRepository  = new CollectionRepository(context);
 }
 public ArtworkTypeController(Context context)
 {
     this.artworktypeRepository = new ArtworkTypeRepository(context);
 }