CraftEmployee.cs 910 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. /// Craft id
  10. /// </summary>
  11. public int CraftId { get; set; }
  12. /// <summary>
  13. /// Craft
  14. /// </summary>
  15. public virtual Craft Craft { get; set; }
  16. /// <summary>
  17. /// Employee id
  18. /// </summary>
  19. public int EmployeeId { get; set; }
  20. /// <summary>
  21. /// Employee
  22. /// </summary>
  23. public virtual Employee Employee { get; set; }
  24. /// <summary>
  25. /// The amount of employee working hours
  26. /// </summary>
  27. public decimal Amount { get; set; }
  28. /// <summary>
  29. /// The value of the employee working hours
  30. /// </summary>
  31. public decimal Value { get; set; }
  32. }
  33. }