Beispiel #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;
 }
Beispiel #2
0
 public Diariser(IGiveYouGigs gigs)
 {
     this.gigs = gigs;
 }
 public ManageGigsController(IGiveYouGigs gigs, IStoreGigs gigStorer, IHandleRepeatingGigs repeatingGigs)
 {
     this.gigs = gigs;
     this.repeatingGigs = repeatingGigs;
     this.gigStorer = gigStorer;
 }
Beispiel #4
0
 public DiaryController(IGiveYouGigs gigs, IProvideBlobs blobs, IGiveYouVenues venues)
 {
     this.gigs = gigs;
     this.venues = venues;
     this.blobs = blobs;
 }
Beispiel #5
0
 public BandController(IWillProvideBands bands, IGiveYouGigs gigs, ISaveBands bandSave)
 {
     this.bands = bands;
     this.bandSave = bandSave;
     this.gigs = gigs;
 }
Beispiel #6
0
 public HomeController(IGiveYouGigs gigs, IDoOtherThingsWithGigs otherGigs)
 {
     this.gigs = gigs;
     this.otherGigs = otherGigs;
 }