C# Class LayersCMS.Layers.Core.Base.Layer

A Layer is essentially a module, e.g. a blog module, or a jobs module
Afficher le fichier Open project: stevekennaird/LayersCMS

Méthodes publiques

Méthode Description
InitialiseDatabase ( IDbConnection dbConn ) : void

Any database table creation that needs to happen for this module. Should only need to happen once.

InitialiseLayerForApplication ( RouteCollection routes ) : void

The initialisation code to run on Application Start

Method Details

InitialiseDatabase() public abstract méthode

Any database table creation that needs to happen for this module. Should only need to happen once.
public abstract InitialiseDatabase ( IDbConnection dbConn ) : void
dbConn IDbConnection A connection to the database
Résultat void

InitialiseLayerForApplication() public abstract méthode

The initialisation code to run on Application Start
public abstract InitialiseLayerForApplication ( RouteCollection routes ) : void
routes RouteCollection
Résultat void