public IActionResult UpdateThisTenant(int id, Tenant updatesForTenant) { updatesForTenant.Dob = DateTime.Today; var updatedTenants = _repo.UpdateThisTenant(id, updatesForTenant); return(Ok(updatedTenants)); }