Beispiel #1
0
 public static void ParseE1(E1CV cvCollection)
 {
     foreach (Resume resume in cvCollection.resumes)
     {
         ParseE1Resume(resume);
     }
 }
 public string RefreshData(string jsonResponse)
 {
     try
     {
         E1CV cv = JsonConvert.DeserializeObject <E1CV>(jsonResponse);
         E1toInternalSaveHelper.ParseE1(cv);
     }
     catch (Exception ex)
     {
         return(ex.Message);
     }
     return("База успешно обновлена!");
 }