public async Task <IActionResult> Create([FromBody] Company company) { await _companyService.AddNewItem(company); return(Ok()); }