public ClientOrderDetail(string containerId, YellowstonePathology.Business.Persistence.PersistenceModeEnum persistenceMode)
        {
            this.m_ValidationErrors = new Dictionary<string, string>();
            this.ClientOrderId = string.Empty;
            this.ClientOrderDetailId = string.Empty;
            this.m_ContainerId = containerId;

            this.m_ClientOrderDetailAliquotCollection = new ClientOrderDetailAliquotCollection();
        }
 public ClientOrderDetail(YellowstonePathology.Business.Persistence.PersistenceModeEnum persistenceMode, string objectId)
 {
     this.m_ObjectId = objectId;
     this.m_ValidationErrors = new Dictionary<string, string>();
     this.m_ClientOrderDetailAliquotCollection = new ClientOrderDetailAliquotCollection();
 }
 public ClientOrderDetail()
 {
     this.m_ValidationErrors = new Dictionary<string, string>();
     this.m_ClientOrderDetailAliquotCollection = new ClientOrderDetailAliquotCollection();
 }