using System; using System.Collections.Generic; using System.Text; using InABox.Core; namespace comal.timesheets.Deliveries { class DeliveryShell { public Guid ID { get; set; } public int Number { get; set; } public string JobName { get; set; } public String AssignmentDate { get; set; } public string EmployeeName { get; set; } public DateTime Completed { get; set; } public int Documents { get; set; } public string ClipImagePath { get; set; } public string LocationImagePath { get; set; } public DateTime Due { get; set; } public DateTime Delivered { get; set; } public string DisplayDelivered { get; set; } public bool LocationVisible { get; set; } public string DeliveredAddress { get; set; } public string Contact { get; set; } public double Longitude { get; set; } public double Latitude { get; set; } public DeliveryShell() { ID = Guid.Empty; Number = 0; JobName = ""; AssignmentDate = ""; EmployeeName = ""; Completed = DateTime.MinValue; Documents = 0; ClipImagePath = ""; LocationImagePath = ""; Due = DateTime.MinValue; Delivered = DateTime.MinValue; DisplayDelivered = ""; LocationVisible = false; DeliveredAddress = ""; Contact = ""; Longitude = 0; Latitude = 0; } } }