public void Apply(FundsWithdrawedEvent @event) { var newTranscation = new Transcation { Id = @event.Id, Amount = @event.Amount }; Transcations.Add(newTranscation); CurrentBalance = CurrentBalance - @event.Amount; }