CraftEmployee.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace GreenTree.Strohrmann.ERP.Core.Domain.Business
  5. {
  6. public class CraftEmployee
  7. {
  8. /// <summary>
  9. /// Employee id
  10. /// </summary>
  11. public int Id { get; set; }
  12. /// <summary>
  13. /// Craft id
  14. /// </summary>
  15. public int CraftId { get; set; }
  16. /// <summary>
  17. /// Craft
  18. /// </summary>
  19. public virtual Craft Craft { get; set; }
  20. /// <summary>
  21. /// Employee id
  22. /// </summary>
  23. public int EmployeeId { get; set; }
  24. /// <summary>
  25. /// Employee
  26. /// </summary>
  27. public virtual Employee Employee { get; set; }
  28. /// <summary>
  29. /// The amount of employee working hours
  30. /// </summary>
  31. public float Amount { get; set; }
  32. /// <summary>
  33. /// The value of the employee working hours
  34. /// </summary>
  35. public float Value { get; set; }
  36. /// <summary>
  37. /// Employee comment
  38. /// </summary>
  39. public string Comment { get; set; }
  40. }
  41. }