public CollectionItemViewModel(StorageFile file, BasePastedContentTypeDataModel contentType)
 {
     this.File        = file;
     this.ContentType = contentType;
 }
 public ContentStartedLoadingEventArgs(BasePastedContentTypeDataModel contentDataModel)
 {
     this.contentDataModel = contentDataModel;
 }
 public FileCreatedEventArgs(BasePastedContentTypeDataModel contentType, StorageFile file)
 {
     this.contentType = contentType;
     this.file        = file;
 }
 public ContentLoadedEventArgs(BasePastedContentTypeDataModel contentDataModel, bool isFilled, bool pastedByReference)
 {
     this.contentDataModel  = contentDataModel;
     this.isFilled          = isFilled;
     this.pastedByReference = pastedByReference;
 }