Files
myoffice/MyOffice.Data.Repositories/Account/IAccountMotionRepository.cs
T
2023-06-21 17:56:00 +03:00

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);
}