26 lines
753 B
C#
26 lines
753 B
C#
namespace Nop.Services.Common;
|
|
|
|
/// <summary>
|
|
/// Maintenance service interface
|
|
/// </summary>
|
|
public partial interface IMaintenanceService
|
|
{
|
|
/// <summary>
|
|
/// Gets all backup files
|
|
/// </summary>
|
|
/// <returns>Backup file collection</returns>
|
|
IList<string> GetAllBackupFiles();
|
|
|
|
/// <summary>
|
|
/// Creates a path to a new database backup file
|
|
/// </summary>
|
|
/// <returns>Path to a new database backup file</returns>
|
|
string CreateNewBackupFilePath();
|
|
|
|
/// <summary>
|
|
/// Returns the path to the backup file
|
|
/// </summary>
|
|
/// <param name="backupFileName">The name of the backup file</param>
|
|
/// <returns>The path to the backup file</returns>
|
|
string GetBackupPath(string backupFileName);
|
|
} |