public partial class Members
{
[Key]
public int MemberId { get; set; }
[StringLength(100)]
public string Name { get; set; }
public long? GeoAdressId { get; set; }
[StringLength(20)]
public string Phone { get; set; }
[StringLength(50)]
public string EMail { get; set; }
[Column(TypeName = "date")]
public DateTime? Birthday { get; set; }
public bool IsMaritalStatus { get; set; }
public byte EducationLevelId { get; set; }
public bool IsWorking { get; set; }
[StringLength(200)]
public string FirmName { get; set; }
[StringLength(200)]
public string Job { get; set; }
public bool IsStudent { get; set; }
public int? SchoolId { get; set; }
[StringLength(100)]
public string ReferenceName { get; set; }
[StringLength(20)]
public string ReferencePhone { get; set; }
public bool IsBeaware { get; set; }
public bool IsSingUp { get; set; }
public bool IsActive { get; set; }
}
Son Yorumlar