Line data Source code
1 : #region Copyright
2 : // // -----------------------------------------------------------------------
3 : // // <copyright company="cdmdotnet Limited">
4 : // // Copyright cdmdotnet Limited. All rights reserved.
5 : // // </copyright>
6 : // // -----------------------------------------------------------------------
7 : #endregion
8 :
9 : using Cqrs.Events;
10 :
11 : namespace Cqrs.MongoDB.Serialisers
12 : {
13 : public class MongoDbEventDeserialiser<TAuthenticationToken> : EventDeserialiser<TAuthenticationToken>
14 0 : {
15 : #region Overrides of EventDeserialiser<TAuthenticationToken>
16 :
17 0 : public override IEvent<TAuthenticationToken> Deserialise(EventData eventData)
18 : {
19 : return (IEvent<TAuthenticationToken>)eventData.Data;
20 : }
21 :
22 : #endregion
23 : }
24 : }
|