mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
73 lines
1.9 KiB
C#
73 lines
1.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace MusicStore.Models
|
|
{
|
|
//[Bind(Include = "FirstName,LastName,Address,City,State,PostalCode,Country,Phone,Email")]
|
|
public class Order
|
|
{
|
|
public Order()
|
|
{
|
|
OrderDetails = new List<OrderDetail>();
|
|
}
|
|
|
|
[ScaffoldColumn(false)]
|
|
public int OrderId { get; set; }
|
|
|
|
[ScaffoldColumn(false)]
|
|
public DateTime OrderDate { get; set; }
|
|
|
|
[Required]
|
|
[ScaffoldColumn(false)]
|
|
public string Username { get; set; }
|
|
|
|
[Required]
|
|
[Display(Name = "First Name")]
|
|
[StringLength(160)]
|
|
public string FirstName { get; set; }
|
|
|
|
[Required]
|
|
[Display(Name = "Last Name")]
|
|
[StringLength(160)]
|
|
public string LastName { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(70, MinimumLength = 3)]
|
|
public string Address { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(40)]
|
|
public string City { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(40)]
|
|
public string State { get; set; }
|
|
|
|
[Required]
|
|
[Display(Name = "Postal Code")]
|
|
[StringLength(10, MinimumLength = 5)]
|
|
public string PostalCode { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(40)]
|
|
public string Country { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(24)]
|
|
[DataType(DataType.PhoneNumber)]
|
|
public string Phone { get; set; }
|
|
|
|
[Required]
|
|
[Display(Name = "Email Address")]
|
|
[RegularExpression(@"[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}",
|
|
ErrorMessage = "Email is not valid.")]
|
|
[DataType(DataType.EmailAddress)]
|
|
public string Email { get; set; }
|
|
|
|
[ScaffoldColumn(false)]
|
|
public decimal Total { get; set; }
|
|
|
|
public ICollection<OrderDetail> OrderDetails { get; set; }
|
|
}
|
|
} |