|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Taloyhtio.GeneralApi.Common.DTO;
|
|
|
|
namespace Taloyhtio.GeneralApi.IntegrationUtility.Services
|
|
{
|
|
public interface IFileParser<T>
|
|
where T : class
|
|
{
|
|
List<T> Parse(string filePath);
|
|
}
|
|
}
|