LogikalLabour.cs 287 B

12345678910111213
  1. using InABox.Logikal;
  2. namespace PRSLogikal
  3. {
  4. public class LogikalLabour : ILogikalLabour
  5. {
  6. public string Code { get; set; }
  7. public string Description { get; set; }
  8. public double Quantity { get; set; }
  9. public double Cost { get; set; }
  10. }
  11. }