Beispiel #1
0
 public Exporterer(IDocumentSession session, ISaveBackups backups, ISummariseGigs gigs, ISummariseVenues venues, ISummariseStolenGear stolen, IDoOtherThingsWithGigs otherGigs, ISummariseBands bands)
 {
     this.session = session;
     this.bands = bands;
     this.otherGigs = otherGigs;
     this.stolen = stolen;
     this.venues = venues;
     this.gigs = gigs;
     this.backups = backups;
 }
Beispiel #2
0
 public HomeController(IGiveYouGigs gigs, IDoOtherThingsWithGigs otherGigs)
 {
     this.gigs = gigs;
     this.otherGigs = otherGigs;
 }