Exemple #1
0
 public VenueProvider(IDocumentSession session, IDocumentStore documentStore, IHandleRepeatingGigs repeaters, ISummariseVenues venueSummary, ISummariseGigs gigSummary)
 {
     this.session = session;
     this.gigSummary = gigSummary;
     this.venueSummary = venueSummary;
     this.repeaters = repeaters;
     this.documentStore = documentStore;
 }
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;
 }