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