public PiratController(IPiratRepository PiratRepo, ISchiffRepository SchiffRepo, IPiratSchiffRepository PiratSchiffRepo, IWebHostEnvironment env) { this.PiratRepo = PiratRepo; this.SchiffRepo = SchiffRepo; this.PiratSchiffRepo = PiratSchiffRepo; this.env = env; }
public SchiffController(ISchiffRepository SchiffRepo) { this.SchiffRepo = SchiffRepo; }