public async Task <IActionResult> Delete(Guid id)
        {
            var success = await _services.Delete(id);

            return(success ? Ok() : NotFound() as IActionResult);
        }