1234567891011121314151617181920212223242526272829 |
- namespace praktika_2
- {
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Data.Entity.Spatial;
- public partial class info_move
- {
- [DatabaseGenerated(DatabaseGeneratedOption.None)]
- public int id { get; set; }
- [Required]
- [StringLength(20)]
- public string type { get; set; }
- [Column(TypeName = "money")]
- public decimal? price { get; set; }
- public int? id_employye { get; set; }
- public int? id_build { get; set; }
- public virtual building building { get; set; }
- public virtual employye employye { get; set; }
- }
- }
|