using AssetManager.Models.DTOs; namespace AssetManager.Services; public interface IPortfolioService { CreatePortfolioResponse CreatePortfolio(CreatePortfolioRequest request); PortfolioDetailResponse GetPortfolioById(string id); GetTransactionsResponse GetTransactions(string portfolioId, int limit, int offset); CreateTransactionResponse CreateTransaction(CreateTransactionRequest request); }