Class ScoreInstaller
Abstract base class for installing the Score service.
Implements
Inherited Members
Namespace: Serenity.Score.Installation.Installers
Assembly: Serenity.Score.Installation.dll
Syntax
public abstract class ScoreInstaller : IInstaller
Remarks
Concrete implementations override Install(ILogService) to create the service, optionally providing a score repository for persistence.
Constructors
ScoreInstaller()
Declaration
protected ScoreInstaller()
Fields
_service
Declaration
protected IScoreService _service
Field Value
| Type | Description |
|---|---|
| IScoreService | The installed score service. |
Methods
GetService()
Gets the installed score service.
Declaration
public IScoreService GetService()
Returns
| Type | Description |
|---|---|
| IScoreService | The installed IScoreService. |
Install(ILogService)
Installs the Score service.
Declaration
public abstract void Install(ILogService logService)
Parameters
| Type | Name | Description |
|---|---|---|
| ILogService | logService | The logging service for diagnostic output. |