Ejemplo n.º 1
0
 public Task <Pr0grammResponse> SendMessage(IPr0grammUser recipient, string message)
 {
     if (recipient == null)
     {
         throw new ArgumentNullException(nameof(recipient));
     }
     return(SendMessage(recipient.Id, message));
 }
Ejemplo n.º 2
0
 public Task<Pr0grammResponse> SendMessage(IPr0grammUser recipient, string message)
 {
     if (recipient == null)
         throw new ArgumentNullException(nameof(recipient));
     return SendMessage(recipient.Id, message);
 }