private static List <Indico.BusinessObjects.ReturnShippingAddressWeekendDateBO> IQueryableToList(IQueryable <Indico.DAL.ReturnShippingAddressWeekendDate> oQuery) { List <Indico.DAL.ReturnShippingAddressWeekendDate> oList = oQuery.ToList(); List <Indico.BusinessObjects.ReturnShippingAddressWeekendDateBO> rList = new List <Indico.BusinessObjects.ReturnShippingAddressWeekendDateBO>(oList.Count); foreach (Indico.DAL.ReturnShippingAddressWeekendDate o in oList) { Indico.BusinessObjects.ReturnShippingAddressWeekendDateBO obj = new Indico.BusinessObjects.ReturnShippingAddressWeekendDateBO(o); rList.Add(obj); } return(rList); }
/// <summary> /// Deserializes Indico.BusinessObjects.ReturnShippingAddressWeekendDateBO object from an XML representation /// </summary> /// <param name="strXML">a XML string serialized representation</param> public Indico.BusinessObjects.ReturnShippingAddressWeekendDateBO DeserializeObject(string strXML) { Indico.BusinessObjects.ReturnShippingAddressWeekendDateBO objTemp = null; System.Xml.XmlDocument objXML = new System.Xml.XmlDocument(); objXML.LoadXml(strXML); System.Text.Encoding encoding = System.Text.Encoding.UTF8; System.IO.MemoryStream objStream = new System.IO.MemoryStream(); byte[] b = encoding.GetBytes(objXML.OuterXml); objStream.Write(b, 0, (int)b.Length); objStream.Position = 0; System.Xml.Serialization.XmlSerializer x = new System.Xml.Serialization.XmlSerializer(this.GetType()); objTemp = (Indico.BusinessObjects.ReturnShippingAddressWeekendDateBO)x.Deserialize(objStream); objStream.Close(); return(objTemp); }
internal void SetBO(Indico.BusinessObjects.ReturnShippingAddressWeekendDateBO obj) { // set this Indico.BusinessObjects.ReturnShippingAddressWeekendDateBO properties this.ID = obj.ID; this.CompanyName = obj.CompanyName; }