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