Exemple #1
0
 public IObservable <SendChatReponseDto> SendChat(SendChatRequestDto input)
 {
     return(Observable.Defer(() =>
     {
         return _remoteSource.SendChat(input).Select(_ =>
         {
             return _;
         });
     }));
 }
 public IObservable <SendChatReponseDto> SendChat(SendChatRequestDto input)
 {
     return(_restService.SendChat(input));
 }