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