| 68 | } |
| 69 | |
| 70 | void FileTransferRecordOperator::DeleteAll() { |
| 71 | using Storage = decltype(db_->GetStorageTypeValue()); |
| 72 | auto storage = std::any_cast<Storage>(db_->GetDbStorage()); |
| 73 | storage.remove_all<FileTransferRecord>(); |
| 74 | } |
| 75 | |
| 76 | int FileTransferRecordOperator::GetTotalCounts() { |
| 77 | using Storage = decltype(db_->GetStorageTypeValue()); |
nothing calls this directly
no test coverage detected