CQRSMicroservices.ServiceFabric.AggregateRootActor.AggregateRootActor.Deserialize C# (CSharp) Method

Deserialize() private static method

private static Deserialize ( string command ) : Command
command string
return CQRSMicroservices.Framework.Command
    private static Command Deserialize(string command)
    {
      return CqrsApplication.GetService<IDeserializer>().CreateCommand(JObject.Parse(command));
    }