info_move.cs 739 B

1234567891011121314151617181920212223242526272829
  1. namespace praktika_2
  2. {
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel.DataAnnotations;
  6. using System.ComponentModel.DataAnnotations.Schema;
  7. using System.Data.Entity.Spatial;
  8. public partial class info_move
  9. {
  10. [DatabaseGenerated(DatabaseGeneratedOption.None)]
  11. public int id { get; set; }
  12. [Required]
  13. [StringLength(20)]
  14. public string type { get; set; }
  15. [Column(TypeName = "money")]
  16. public decimal? price { get; set; }
  17. public int? id_employye { get; set; }
  18. public int? id_build { get; set; }
  19. public virtual building building { get; set; }
  20. public virtual employye employye { get; set; }
  21. }
  22. }