public async Task <IActionResult> Delete(int id)
        {
            await _GroupsService.DeleteById(id);

            return(Ok());
        }