18 lines
		
	
	
		
			491 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			491 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Core.DomainObjects.PageSections;
 | |
| using WeatherForecast.Models.Abstractions;
 | |
| 
 | |
| namespace WeatherForecast.Models.PageSections {
 | |
| 
 | |
|   /// <summary>
 | |
|   /// 
 | |
|   /// </summary>
 | |
|   public class BillingAddressSectionModel : AddressSectionModelBase<BillingAddressSection> {
 | |
| 
 | |
|     /// <summary>
 | |
|     /// 
 | |
|     /// </summary>
 | |
|     /// <param name="billingAddressSection"></param>
 | |
|     public BillingAddressSectionModel(BillingAddressSection billingAddressSection) : base(billingAddressSection) { }
 | |
|   }
 | |
| }
 |