Ejemplo n.º 1
0
 public ImageController(IImageRepozytory imageRepozytory, IHostingEnvironment hostingEnvironment, IEventRepozytory eventRepozytory)
 {
     _imageRepozytory        = imageRepozytory;
     this.hostingEnvironment = hostingEnvironment;
     _eventRepozytory        = eventRepozytory;
 }
Ejemplo n.º 2
0
 public PublicationController(IHostingEnvironment hostingEnvironment, IImageRepozytory imageRepozytory)
 {
     this.hostingEnvironment = hostingEnvironment;
     _imageRepozytory        = imageRepozytory;
 }