Beispiel #1
0
 public VenuesController(IGiveYouVenues venues, IStoreMetadata metadata, IDealWithRavenAttachments attachments)
 {
     this.venues = venues;
     this.attachments = attachments;
     this.metadata = metadata;
 }
Beispiel #2
0
 public VenueController(IGiveYouVenues venues, IProvideBlobs blobs)
 {
     this.venues = venues;
     this.blobs = blobs;
 }
Beispiel #3
0
 public DiaryController(IGiveYouGigs gigs, IProvideBlobs blobs, IGiveYouVenues venues)
 {
     this.gigs = gigs;
     this.venues = venues;
     this.blobs = blobs;
 }