| 123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GreenTree.Strohrmann.ERP.Core.Domain.Business
- {
- public class CraftEmployee
- {
- /// <summary>
- /// Craft id
- /// </summary>
- public int CraftId { get; set; }
- /// <summary>
- /// Craft
- /// </summary>
- public virtual Craft Craft { get; set; }
- /// <summary>
- /// Employee id
- /// </summary>
- public int EmployeeId { get; set; }
- /// <summary>
- /// Employee
- /// </summary>
- public virtual Employee Employee { get; set; }
- /// <summary>
- /// The amount of employee working hours
- /// </summary>
- public decimal Amount { get; set; }
- /// <summary>
- /// The value of the employee working hours
- /// </summary>
- public decimal Value { get; set; }
- }
- }
|