namespace MyOffice.Data.Repositories.Account; using Models.Accounts; public interface IAccountMotionRepository { bool Add(AccountMotion accountMotion); List GetByAccount(Guid accountId, DateTime dateFrom, DateTime dateTo); }