Example #1
0
 public void SaveAsync(BinaryObject file)
 {
     _binaryObjectRepository.Insert(file);
 }
Example #2
0
 public Task SaveAsync(BinaryObject file)
 {
     return(_binaryObjectRepository.InsertAsync(file));
 }