using System.Collections.Generic; using Pipefy.Models; namespace Pipefy.Services { public interface IDataMapper { List ConvertEmpresasJson(List jsonData); List ConvertGestoresJson(List jsonData); } }