New vue for reading in + some new repositories

This commit is contained in:
2023-08-24 23:00:16 +02:00
parent 70c2d47e7b
commit 374d401692
10 changed files with 565 additions and 1 deletions

View File

@ -0,0 +1,10 @@
using WinFormDiApp.BL.Models;
namespace WinFormDiApp.BLI
{
public interface IReadingIn
{
bool ReadAndSaveInvoices(string fullFileName);
IEnumerable<AccountRecord> readXLS(string FilePath);
}
}