using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Web; namespace DSWeb.Areas.MvcShipping.DB { [Table("info_client")] public class InfoClient { [Key] public string GID { get; set; } public string CODENAME { get; set; } public string SHORTNAME { get; set; } public string DESCRIPTION { get; set; } public string NAME { get; set; } public string EnFullName { get; set; } public string ADDR { get; set; } public string EMAIL { get; set; } public string WEB { get; set; } public string TEL { get; set; } public string FAX { get; set; } public string CHIEF { get; set; } public string SALE { get; set; } public string OP { get; set; } public string DOC { get; set; } } }