C# Class CQRS.Talk.Sample1.SeparateReadsFromWrites.DictinarySample

Show file Open project: trailmax/CQRS.Talk

Public Methods

Method Description
CQS_Compliant ( ) : void

This is CQS compliant version that does the same thing as above.

CQS_Violation ( ) : void

CQS is not always applicable. Operations with Dictionary have a prime example of TryGetValue: returns boolean for success and populates out-variable with value.

DictinarySample ( ) : System

Method Details

CQS_Compliant() public method

This is CQS compliant version that does the same thing as above.
public CQS_Compliant ( ) : void
return void

CQS_Violation() public method

CQS is not always applicable. Operations with Dictionary have a prime example of TryGetValue: returns boolean for success and populates out-variable with value.
public CQS_Violation ( ) : void
return void

DictinarySample() public method

public DictinarySample ( ) : System
return System