Ejemplo n.º 1
0
        public void Handle(SponsorPositionChanged e)
        {
            var sponsor = Sponsors.SingleOrDefault(x => x.Id == e.Id);

            if (sponsor == null)
            {
                return;
            }

            sponsor.Position = e.Position;
        }
Ejemplo n.º 2
0
 public void Apply(SponsorPositionChanged e)
 {
     //TODO: nothing at this time
 }