| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GreenTree.Strohrmann.ERP.Core.Domain.Business
- {
- public class CraftEmployee
- {
- /// <summary>
- /// Employee id
- /// </summary>
- public int Id { get; set; }
- /// <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 float Amount { get; set; }
- /// <summary>
- /// The value of the employee working hours
- /// </summary>
- public float Value { get; set; }
- /// <summary>
- /// Employee comment
- /// </summary>
- public string Comment { get; set; }
- }
- }
|