public JobCreatePhotoset(DC context, string fullPath, string name, string month, string year, string photoid, string story)
     : base(context, fullPath)
 {
     Photoset = new Album();
     Photoset.Name = name;
     Photoset.Month = month;
     Photoset.Year = year;
     Photoset.Story = story;
     m_photoid = photoid;
 }
 public JobGetPhotosets(DC context)
     : base(context, "None")
 {
 }
 public JobUpdatePhotoWithPhotosetId(DC context, string fullPath, List<Photo> pl, Album a)
     : base(context, fullPath)
 {
     m_pl = pl;
     A = a;
 }
 public JobFlickrUploader(DC context, string fullPath)
     : base(context, fullPath)
 {
 }
 public NotUsedNowJobCreateTagList(DC context, DirectoryToUpload CurrentDirectory)
     : base(context, CurrentDirectory.DI.FullName)
 {
     m_CurrentDirectory = CurrentDirectory;
     m_tagsforalbum = "";
 }
 public JobAddAlbumJob(DC context, string fullPath)
     : base(context, fullPath)
 {
 }
 public TempJobUploadDescription(DC context, string fullPath, Photo p)
     : base(context, fullPath, p)
 {
 }
 public TempJobUloadPhoto(DC context, string fullPath, Photo p)
     : base(context, fullPath, p)
 {
 }
 public JobUploadPhoto(DC context, string fullPath, Photo p)
     : base(context, fullPath)
 {
     _photo = p;
 }
Exemple #10
0
 public JobCityInfo(DC context, string fullPath, string city)
     : base(context, fullPath)
 {
     _city = city;
 }