 | HdsiServiceClientCreateTModel(TModel, Boolean) Method |
Creates specified data.
Namespace: SanteDB.Messaging.HDSI.ClientAssembly: SanteDB.Messaging.HDSI.Client (in SanteDB.Messaging.HDSI.Client.dll) Version: 3.0.2081-alpha+cbc29d8899d643bca0b6921497a6c32801355dbe
Syntaxpublic TModel Create<TModel>(
TModel data,
bool asBundle
)
where TModel : IdentifiedData
Public Function Create(Of TModel As IdentifiedData) (
data As TModel,
asBundle As Boolean
) As TModel
public:
generic<typename TModel>
where TModel : IdentifiedData
TModel Create(
TModel data,
bool asBundle
)
member Create :
data : 'TModel *
asBundle : bool -> 'TModel when 'TModel : IdentifiedDataParameters
- data TModel
- The data to be created.
- asBundle Boolean
- True if the result should be returned as a bundle
Type Parameters
- TModel
- The type of data to be created.
Return Value
TModelReturns the newly created data.
See Also