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