namespace Nop.Services.Common; /// /// Maintenance service interface /// public partial interface IMaintenanceService { /// /// Gets all backup files /// /// Backup file collection IList GetAllBackupFiles(); /// /// Creates a path to a new database backup file /// /// Path to a new database backup file string CreateNewBackupFilePath(); /// /// Returns the path to the backup file /// /// The name of the backup file /// The path to the backup file string GetBackupPath(string backupFileName); }