Newer
Older
TheCleanArchitecture / src / Application / Common / Interfaces / ICsvFileBuilder.cs
@Derek Comartin Derek Comartin on 15 Jun 2021 288 bytes Reorganized
using CleanArchitecture.Application.TodoLists.Queries.ExportTodos;
using System.Collections.Generic;

namespace CleanArchitecture.Application.Common.Interfaces
{
    public interface ICsvFileBuilder
    {
        byte[] BuildTodoItemsFile(IEnumerable<TodoItemRecord> records);
    }
}