Docket.cs 595 B

12345678910111213141516171819202122232425262728293031
  1. using InABox.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace comal.timesheets.Deliveries
  6. {
  7. public class Docket : Entity
  8. {
  9. public string Setout { get; set; }
  10. public string Rack { get; set; }
  11. public string Description { get; set; }
  12. public string Requi { get; set; }
  13. protected override void Init()
  14. {
  15. base.Init();
  16. Setout = "";
  17. Rack = "";
  18. Description = "";
  19. Requi = "";
  20. }
  21. public Docket()
  22. {
  23. }
  24. }
  25. }