C# Class ChainOfResponsibility.NewVehicle

Show file Open project: akshayblevel/ChainOfResponsibility-Design-Pattern Class Usage Examples

Protected Properties

Property Type Description
process NewVehicle

Public Methods

Method Description
Proceed ( string request ) : void
SetProcess ( NewVehicle process ) : void

Method Details

Proceed() public abstract method

public abstract Proceed ( string request ) : void
request string
return void

SetProcess() public method

public SetProcess ( NewVehicle process ) : void
process NewVehicle
return void

Property Details

process protected property

protected NewVehicle,ChainOfResponsibility process
return NewVehicle