Rename ExportService.Export to ExportChatLog for consistency

This commit is contained in:
Oleksii Holub 2018-10-31 17:54:13 +02:00
parent 52684c264f
commit ba27a9f909
4 changed files with 4 additions and 4 deletions

View file

@ -15,7 +15,7 @@ namespace DiscordChatExporter.Core.Services
_settingsService = settingsService;
}
public void Export(ChatLog chatLog, string filePath, ExportFormat format)
public void ExportChatLog(ChatLog chatLog, string filePath, ExportFormat format)
{
// Create template loader
var loader = new TemplateLoader();

View file

@ -4,6 +4,6 @@ namespace DiscordChatExporter.Core.Services
{
public interface IExportService
{
void Export(ChatLog chatLog, string filePath, ExportFormat format);
void ExportChatLog(ChatLog chatLog, string filePath, ExportFormat format);
}
}