C# Class DotNetMigrations.Repositories.CommandRepository

显示文件 Open project: jpoehls/dotnetmigrations Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
CommandRepository ( ) : System.Collections.Generic

Instantiates a new instance of the CommandRepository class.

GetCommand ( string commandName ) : ICommand

Retrieves the command based on the command name.

Method Details

CommandRepository() public method

Instantiates a new instance of the CommandRepository class.
public CommandRepository ( ) : System.Collections.Generic
return System.Collections.Generic

GetCommand() public method

Retrieves the command based on the command name.
public GetCommand ( string commandName ) : ICommand
commandName string The name of the command to retrieve.
return ICommand