public async Task <IActionResult> Delete(int transferId)
        {
            await _authorizationService.HandleGetDeleteAsync <Transfer>(transferId);

            await _transferService.Delete(transferId);

            return(NoContent());
        }