public async Task <CommandReply> Say(Guid id, string language, EslSayTypes type, EslSayMethods method,
                                      EslSayGenders gender, string text, int loop, bool eventLock)
 {
     return
         (await
          ExecuteApplication("say",
                             language + " " + type + " " + method.ToString().Replace("_", "/") + " " + gender + " " + text,
                             loop, eventLock));
 }
 public async Task<CommandReply> Say(Guid id, string language, EslSayTypes type, EslSayMethods method,
     EslSayGenders gender, string text, int loop, bool eventLock) {
     return
         await
             ExecuteApplication("say",
                 language + " " + type + " " + method.ToString().Replace("_", "/") + " " + gender + " " + text,
                 loop, eventLock);
 }