public static string Get(JeapieRequestType requestType)
 {
     try
     {
         return UrlsList[requestType];
     }
     catch
     {
             throw new NotImplementedException("Unknown reqeust type method");
     }
 }
 public string GetUrl(JeapieRequestType requestType)
 {
     return Urls.Get(requestType);
 }