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; }
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; }
public GigProvider(IDocumentSession session, IHandleRepeatingGigs repeaters, ISummariseGigs gigSummary) { this.session = session; this.gigSummary = gigSummary; this.repeaters = repeaters; }
public Bands(IDocumentSession session, ISummariseGigs gigs) { this.session = session; this.gigs = gigs; }