public async Task <IActionResult> DeleteByIdAsync(int id)
        {
            await _companyServices.DeleteCompanyByIdAsync(id);

            return(Ok());
        }