using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace BookingWeb.DB.Model { [Table("CODE_SERVICE")] public class CODE_SERVICE { [Key] public string GID { get; set; } public string SERVICE { get; set; } } }