C# Class Ru.GameSchool.BusinessLayer.Services.BaseService

Abstract base class that all services inherit from.
Datei anzeigen Open project: davidein/Ru.GameSchool

Private Properties

Property Type Description

Public Methods

Method Description
SetDatasource ( IGameSchoolEntities dataSource ) : void

Sets up a new datasource.

Protected Methods

Method Description
Save ( ) : void

Save all changes to the datasource.

Method Details

Save() protected method

Save all changes to the datasource.
protected Save ( ) : void
return void

SetDatasource() public method

Sets up a new datasource.
public SetDatasource ( IGameSchoolEntities dataSource ) : void
dataSource IGameSchoolEntities A datasource that implements the IGameSchoolEntities interface.
return void