Exemple #1
0
 public BandController(IWillProvideBands bands, ISummariseBands bandSummary, IGiveYouGigs gigs, IEmail email, ISayThanks thanks)
 {
     this.bands = bands;
     this.thanks = thanks;
     this.email = email;
     this.gigs = gigs;
     this.bandSummary = bandSummary;
 }
Exemple #2
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;
 }