public Address(StateCityZip stateCityZip, StreetAddress streetAddress) { StateCityZip = stateCityZip; StreetAddress = streetAddress; }
public async Task <ActionResult <StateCityZip> > Post(StateCityZip resource) { var saved = await _repository.AddAsync(resource); return(CreatedAtAction(nameof(Get), new { id = saved.GetKey() }, saved)); }