Hello everybody,
today I want to make compendium of CQRS for very simple case.
So, at one of the projects I seen following way of implementing code:
public class WriteModel
{
//common properties
public int SomeEntity {get;set; } // ID of some entity
}
public class ReadModel : Wri...