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