public static bool Update(ProjectWorkingTime ProjectWorkingTime)
 {
     return(WebApi <bool> .PutAsync(controllerName, ProjectWorkingTime, "Put").Result);
 }
 public static int Insert(ProjectWorkingTime ProjectWorkingTime)
 {
     return(WebApi <int> .PostAsync(controllerName, ProjectWorkingTime, "SinglePost").Result);
 }