9 lines
246 B
C#
9 lines
246 B
C#
namespace MyOffice.Data.Repositories.Account;
|
|
|
|
using Models.Accounts;
|
|
|
|
public interface IAccountMotionRepository
|
|
{
|
|
bool Add(AccountMotion accountMotion);
|
|
List<AccountMotion> GetByAccount(Guid accountId, DateTime dateFrom, DateTime dateTo);
|
|
} |