/// <summary>
 /// Does the file already exist in the database or not
 /// </summary>
 /// <param name="file">the to see if it already exists</param>
 private bool FileExists(File file)
 {
     return this._storageItemRepository.FileExists(this._website, file);
 }
Beispiel #2
0
 public FileViewModel(File file)
 {
     this._file = file;
 }