예제 #1
0
 public void UpdateCase(Case testCase)
 {
     SendPost($"update_case/{testCase.id}", testCase);
 }
예제 #2
0
        public Case AddCase(Case testCase)
        {
            object response = SendPost($"add_case/{testCase.section_id}", testCase);

            return(JsonConvert.DeserializeObject <Case>(response.ToString()));
        }