public async Task <IActionResult> CreateOffice([FromBody] OfficeDto office) { var result = await _homeService.CreateOffice(office); return(new OkObjectResult(ApiResponse.Create(result))); }