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