Interface ICreateStrategy<T>
Represents the strategy of entity creation.
Namespace: Relativity.Testing.Framework.Strategies
Assembly: Relativity.Testing.Framework.dll
Syntax
public interface ICreateStrategy<T>
Type Parameters
Name | Description |
---|---|
T | The type of the entity. |
Methods
| Improve this Doc View SourceCreate(T)
Creates the specified entity.
Declaration
T Create(T entity)
Parameters
Type | Name | Description |
---|---|---|
T | entity | The entity to create. |
Returns
Type | Description |
---|---|
T | The created entity. |