public ActionResult <Customer> Post([FromBody] Customer customer) { var entity = _customerData.AddWithReturn(customer); _unitOfWork.Commit(); return(Created(nameof(GetById), entity)); }