File tree Expand file tree Collapse file tree 6 files changed +113
-71
lines changed Expand file tree Collapse file tree 6 files changed +113
-71
lines changed Original file line number Diff line number Diff line change @@ -1251,8 +1251,11 @@ private void ProcessLevel1ChangeMessage(Level1ChangeMessage message)
1251
1251
}
1252
1252
1253
1253
/// <summary>
1254
- /// To get the portfolio by the name. If the portfolio is not registered, it is created via <see cref="IEntityFactory.CreatePortfolio"/>.
1254
+ /// To get the portfolio by the name.
1255
1255
/// </summary>
1256
+ /// <remarks>
1257
+ /// If the portfolio is not registered, it is created via <see cref="IEntityFactory.CreatePortfolio"/>.
1258
+ /// </remarks>
1256
1259
/// <param name="name">Portfolio name.</param>
1257
1260
/// <returns>Portfolio.</returns>
1258
1261
public Portfolio GetPortfolio ( string name )
@@ -1261,8 +1264,11 @@ public Portfolio GetPortfolio(string name)
1261
1264
}
1262
1265
1263
1266
/// <summary>
1264
- /// To get the portfolio by the name. If the portfolio is not registered, it is created via <see cref="IEntityFactory.CreatePortfolio"/>.
1267
+ /// To get the portfolio by the name.
1265
1268
/// </summary>
1269
+ /// <remarks>
1270
+ /// If the portfolio is not registered, it is created via <see cref="IEntityFactory.CreatePortfolio"/>.
1271
+ /// </remarks>
1266
1272
/// <param name="name">Portfolio name.</param>
1267
1273
/// <param name="changePortfolio">Portfolio handler.</param>
1268
1274
/// <returns>Portfolio.</returns>
Original file line number Diff line number Diff line change @@ -24,11 +24,11 @@ namespace StockSharp.BusinessEntities
24
24
public interface IPortfolioProvider
25
25
{
26
26
/// <summary>
27
- /// Load portfolio by name.
27
+ /// To get the portfolio by the name.
28
28
/// </summary>
29
- /// <param name="portfolioName ">Portfolio code name.</param>
29
+ /// <param name="name ">Portfolio name.</param>
30
30
/// <returns>Portfolio.</returns>
31
- Portfolio GetPortfolio ( string portfolioName ) ;
31
+ Portfolio GetPortfolio ( string name ) ;
32
32
33
33
/// <summary>
34
34
/// Get all portfolios.
You can’t perform that action at this time.
0 commit comments