8 lines
202 B
C#
8 lines
202 B
C#
namespace MyYearlyCountings.Facades
|
|
{
|
|
public interface IReadingIn
|
|
{
|
|
bool ReadAndSaveInvoices(string fullFileName);
|
|
IEnumerable<AccountRecord> readXLS(string FilePath);
|
|
}
|
|
} |