public async Task <IActionResult> DeleteGroup(int schemaId)
        {
            Result result = await _schemaGateaway.DeleteSchema(schemaId);

            return(this.CreateResult(result));
        }
Beispiel #2
0
 public async Task DeleteSchema(int schemaId)
 {
     await _schemaGateaway.DeleteSchema(schemaId);
 }