public static void DeleteCustomerGroup(CustomerGroupDTO group)
 {
     exceptionHandling(() => Instance.DeleteCustomerGroup(Token, @group));
 }
 public static CustomerGroupDTO SaveCustomerGroup(CustomerGroupDTO customerGroup)
 {
     return(exceptionHandling(() => Instance.SaveCustomerGroup(Token, customerGroup)));
 }