Beispiel #1
0
 public ArtworkLogic(IArtworkService artworkService)
 {
     _artworkService = artworkService;
     _artworkList    = new List <Artwork>();
 }
Beispiel #2
0
 public ArtworkController(ChartRepository repo, IArtworkService artworkService)
 {
     _repo           = repo;
     _artworkService = artworkService;
 }
 public ArtworkController(IArtworkService artworkService, IMapper mapper, IWebHostEnvironment env)
 {
     this.artworkService = artworkService;
     this.mapper         = mapper;
     this.env            = env;
 }
Beispiel #4
0
 public ArtworkController(IArtworkService artwork, ICategoryService categoryService)
 {
     _artworkService  = artwork;
     _categoryService = categoryService;
 }
 public ArtworkLogic(IArtworkService artworkService)
 {
     _artworkService = artworkService;
     _artworkList = new List<Artwork>();
 }