public void Process(DataCollectorUserInformationChanged @event)
 {
     var updateRes = _dataCollectors.ChangeUserInformation(
         @event.DataCollectorId,
         @event.FullName,
         @event.DisplayName,
         @event.Region,
         @event.District);
 }
示例#2
0
 public void Process(DataCollectorUserInformationChanged @event)
 {
     _dataCollectors.ChangeUserInformation(@event.DataCollectorId, @event.FullName, @event.DisplayName, @event.Region ?? "Unknown", @event.District ?? "Unknown");
 }