public static PhotoAddLoadContext AddPhotoToVenue(string venueId, bool tweet, bool fb)
 {
     var cr = new PhotoAddLoadContext
     {
         VenueId = venueId,
         Facebook = fb,
         Twitter = tweet,
     };
     return cr;
 }
 public static PhotoAddLoadContext AddPhotoToTip(string tipId, bool tweet, bool fb)
 {
     var cr = new PhotoAddLoadContext
     {
         TipId = tipId,
         Facebook = fb,
         Twitter = tweet,
     };
     return cr;
 }
        public static PhotoAddLoadContext AddPhotoToVenue(string venueId, bool tweet, bool fb)
        {
            var cr = new PhotoAddLoadContext
            {
                VenueId  = venueId,
                Facebook = fb,
                Twitter  = tweet,
            };

            return(cr);
        }
        public static PhotoAddLoadContext AddPhotoToTip(string tipId, bool tweet, bool fb)
        {
            var cr = new PhotoAddLoadContext
            {
                TipId    = tipId,
                Facebook = fb,
                Twitter  = tweet,
            };

            return(cr);
        }
 public static PhotoAddLoadContext AddPhotoToCheckin(string checkinId, bool tweet, bool fb, bool publicForEveryone)
 {
     var cr = new PhotoAddLoadContext
     {
         CheckinId = checkinId,
         Facebook = fb,
         Twitter = tweet,
         IsPublicToEveryone = publicForEveryone,
     };
     return cr;
 }
        public static PhotoAddLoadContext AddPhotoToCheckin(string checkinId, bool tweet, bool fb, bool publicForEveryone)
        {
            var cr = new PhotoAddLoadContext
            {
                CheckinId          = checkinId,
                Facebook           = fb,
                Twitter            = tweet,
                IsPublicToEveryone = publicForEveryone,
            };

            return(cr);
        }