CQRSMicroservices.Articles.SellArticleCommand.ToJson C# (CSharp) 메소드

ToJson() 공개 메소드

public ToJson ( ) : string
리턴 string
    public override string ToJson()
    {
      return $@"{{ ""{GetType().FullName}"" : {{
          ""ArticleId"": ""{ArticleId}"",
          ""CustomerId"": ""{CustomerId}""
        }}
      }}";
    }
  }
SellArticleCommand