Commit a2a42444 by AlexNasyr

cosmetic

parent e036a20f
......@@ -13,8 +13,9 @@ namespace DDO_Application.Model {
public async Task PublishAsync<T>(T message) {
var serialized = JsonSerializer.Serialize(message);
var msg = new Message(serialized);
msg.MessageId = "e6c77d95-54a7-4645-818b-16fd71322b6e";
var msg = new Message(serialized) {
MessageId = "e6c77d95-54a7-4645-818b-16fd71322b6e"
};
await _producer.SendAsync(msg);
......
......@@ -23,11 +23,11 @@ namespace SocialMinistryDataExchange.Model {
public bool? БезОтчества { get; set; }
public DateTime? ДатаРождения { get; set; }
public Guid? ТерриторияФактическогоМестаЖительстваNew { get; set; }
public string? Снилс { get; set; }
public string Снилс { get; set; }
public string? ТерриторияShortname { get; set; }
public string ТерриторияShortname { get; set; }
public Guid? ТипОрганизации { get; set; }
public string? ПолноеНаименованиеОрганизации { get; set; }
public string ПолноеНаименованиеОрганизации { get; set; }
public Guid? ВидУчредителя { get; set; }
public int? ВидУчредителяКод { get; set; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment