Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

IMaintenanceService.cs

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);
}