using System.Collections.Generic;
using Microsoft.Extensions.Configuration;
namespace API.Interfaces.Services
{
    public interface IBackupService
    {
        void BackupDatabase();
        /// 
        /// Returns a list of full paths of the logs files detailed in . 
        /// 
        /// 
        /// 
        /// 
        IEnumerable LogFiles(int maxRollingFiles, string logFileName);
        void CleanupBackups();
    }
}