コード例 #1
0
 public static bool Update(TimeAbsentReason TimeAbsentReason)
 {
     return(WebApi <bool> .PutAsync(controllerName, TimeAbsentReason, "Put").Result);
 }
コード例 #2
0
 public static int Insert(TimeAbsentReason TimeAbsentReason)
 {
     return(WebApi <int> .PostAsync(controllerName, TimeAbsentReason, "SinglePost").Result);
 }