Skip to content

Instantly share code, notes, and snippets.

@eskye
Created June 8, 2020 06:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eskye/d8426fa117bb655c1a076744d7eab142 to your computer and use it in GitHub Desktop.
Save eskye/d8426fa117bb655c1a076744d7eab142 to your computer and use it in GitHub Desktop.
BackupService Interface
public interface IBackupService
{
Task<FileObject> GetFlureeSnapshot();
Task<int> UploadToCloud();
Task<string> CreateSnapshot(string databaseName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment