Interface IServiceInstanceFactory<TImplementation>
Defines a method for creating a service instance.
Namespace: Copper.Service.Interface
Assembly: Copper.Service.dll
Syntax
public interface IServiceInstanceFactory<out TImplementation>
where TImplementation : class
Type Parameters
Name | Description |
---|---|
TImplementation | The service instance. |
Methods
View SourceCreate()
Creates a service instance.
Declaration
TImplementation Create()
Returns
Type | Description |
---|---|
TImplementation | The service instance. |