Repositories inserted and new page for accounts inserted
This commit is contained in:
11
WinFormDi.BLI/IAccountRecordRepository.cs
Normal file
11
WinFormDi.BLI/IAccountRecordRepository.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using WinFormDiApp.BL.Models;
|
||||
|
||||
namespace WinFormDiApp.BLI
|
||||
{
|
||||
public interface IAccountRecordRepository
|
||||
{
|
||||
bool AddAccountRecord(AccountRecord record);
|
||||
bool DeleteAccountRecord(AccountRecord record);
|
||||
IEnumerable<AccountRecord> GetAllAccounts();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user