12 lines
411 B
C#
12 lines
411 B
C#
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);
|
|
}
|