Advertisement
Guest User

Untitled

a guest
Oct 4th, 2015
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. class WorkOrder1
  2. {
  3. public int Id { get; set; }
  4. public string Accepter { get; set; }
  5. public string Foreman { get; set; }
  6. public string myDate { get; set; }
  7. public BestPractice bestPractice { get; set; }
  8.  
  9. public int? GuideAuto1Id { get; set; }
  10. public GuideAuto1 GuideAuto1 { get; set; }
  11.  
  12. public ICollection<GuideWorkTypeStandardHour1> GuideWorkTypeStandardHour1s { get; set; }
  13. public WorkOrder1()
  14. {
  15. GuideWorkTypeStandardHour1s = new List<GuideWorkTypeStandardHour1>();
  16. }
  17. }
  18.  
  19. class BestPractice
  20. {
  21. [Key]
  22. [ForeignKey("WorkOrder1")]
  23. public int Id { get; set; }
  24. public string MalfunctionAccordingClient { get; set; }
  25. public string FaultAccordingResultsInspection { get; set; }
  26. public string SpecialNotes { get; set; }
  27. public string RecommendationsClientFutureRepairs { get; set; }
  28.  
  29. public WorkOrder1 WorkOrder1 { get; set; }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement