Files
Accounting/Accounting.BLI/IReadingIn.cs

12 lines
242 B
C#

using Accounting.Models;
namespace Accounting.BLI
{
public interface IReadingIn
{
bool ReadAndSaveInvoices(string fullFileName);
IEnumerable<AccountRecord> readXLS(string FilePath);
void Dispose();
}
}