public static void DeleteById(this IOrganizationUnits operations, long key)
 {
     operations.DeleteByIdAsync(key).GetAwaiter().GetResult();
 }
Ejemplo n.º 2
0
 public static void DeleteById(this IOrganizationUnits operations, long id, string ifMatch = default(string))
 {
     operations.DeleteByIdAsync(id, ifMatch).GetAwaiter().GetResult();
 }