Esempio n. 1
0
        public ClientSupplyOrder(string objectId, YellowstonePathology.Business.Client.Model.Client client)
        {
            this.m_ObjectId = objectId;
            this.m_ClientSupplyOrderId = objectId;
            this.m_ClientAddress = client.Address;
            this.m_ClientCity = client.City;
            this.m_ClientId = client.ClientId;
            this.m_ClientName = client.ClientName;
            this.m_ClientState = client.State;
            this.m_ClientZip = client.ZipCode;
            this.m_ContactName = client.ContactName;
            this.m_OrderDate = DateTime.Today;

            this.m_ClientSupplyOrderDetailCollection = new ClientSupplyOrderDetailCollection();
        }
Esempio n. 2
0
 public ClientSupplyOrder()
 {
     this.m_ClientSupplyOrderDetailCollection = new ClientSupplyOrderDetailCollection();
 }