11 lines
248 B
C#
11 lines
248 B
C#
using WinFormDiApp.BL.Models;
|
|
|
|
namespace WinFormDiApp.BLI
|
|
{
|
|
public interface IReadingIn
|
|
{
|
|
bool ReadAndSaveInvoices(string fullFileName);
|
|
IEnumerable<AccountRecord> readXLS(string FilePath);
|
|
void Dispose();
|
|
}
|
|
} |