public async Task <IActionResult> Delete(int id)
        {
            await _baseAppService.RemoveAsync(id);

            return(Ok());
        }