コード例 #1
0
 public Task UpdateBodyAsync(AmendmentBody item, bool forceSend)
 {
     if (item.IsLive || forceSend)
     {
         return(_clientNotifier.SendToLanguageScreenAsync(item.LanguageId, ClientNotifierMethods.AmendmentBodyChange, _mapper.Map <AmendmentBodyViewViewModel>(item)));
     }
     return(Task.FromResult(0));
 }