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

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