using System.Collections.Generic; using Pipefy.Models; namespace Pipefy.Services { public interface IBusinessLogicService { List CompareData(List databaseData, List jsonList, List jsonListGestores); string FindGestores(string sCodigo, List jsonListGestores); } }