public void Handle(CentreCreated e) { Centres.Add(new Centre { Id = e.CentreId, TournamentId = e.Id, Name = e.Name, Website = e.Website, PhoneNumber = e.PhoneNumber, Address = e.Address }); Storage.Create(new TSCentreImage { Id = e.CentreId, Contents = e.Image }); }
public void Apply(CentreCreated e) { //TODO: nothing at this time }