12 lines
285 B
C#
12 lines
285 B
C#
using System.Collections.Generic;
|
|
using Pipefy.Models;
|
|
|
|
namespace Pipefy.Services
|
|
{
|
|
public interface IDataMapper
|
|
{
|
|
List<ClasseEmpresas> ConvertEmpresasJson(List<RootObject> jsonData);
|
|
List<ClasseGestores> ConvertGestoresJson(List<RootGestor> jsonData);
|
|
}
|
|
}
|