| 12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace friaLabbar.Models
- {
- public class AddressModel
- {
- public int AddressId { get; set; }
- public string StreetAddress { get; set; }
- public string City { get; set; }
- public string State { get; set; }
- public string ZipCode { get; set; }
- public string FullAddress
- {
- get
- {
- return $"{StreetAddress}, {City}, {State}, {ZipCode}";
- }
- }
- }
- }
|