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