12 lines
372 B
C#
12 lines
372 B
C#
using System.Collections.Generic;
|
|
using Pipefy.Models;
|
|
|
|
namespace Pipefy.Services
|
|
{
|
|
public interface IBusinessLogicService
|
|
{
|
|
List<ClasseEmpresas> CompareData(List<ClasseEmpresas> databaseData, List<ClasseEmpresas> jsonList, List<ClasseGestores> jsonListGestores);
|
|
string FindGestores(string sCodigo, List<ClasseGestores> jsonListGestores);
|
|
}
|
|
}
|