예제 #1
0
 internal void SetDAL(Indico.DAL.ReturnShippingAddressWeekendDate obj, IndicoEntities context)
 {
     // set the Indico.DAL.ReturnShippingAddressWeekendDate properties
     obj.ID          = Convert.ToInt32(ID);
     obj.CompanyName = CompanyName;
 }
예제 #2
0
 internal void SetBO(Indico.DAL.ReturnShippingAddressWeekendDate obj)
 {
     // set the Indico.BusinessObjects.ReturnShippingAddressWeekendDateBO properties
     this.ID          = obj.ID;
     this.CompanyName = obj.CompanyName;
 }
예제 #3
0
 /// <summary>
 /// Creates an instance of the ReturnShippingAddressWeekendDateBO class using the supplied Indico.DAL.ReturnShippingAddressWeekendDate.
 /// </summary>
 /// <param name="obj">a Indico.DAL.ReturnShippingAddressWeekendDate whose properties will be used to initialise the ReturnShippingAddressWeekendDateBO</param>
 internal ReturnShippingAddressWeekendDateBO(Indico.DAL.ReturnShippingAddressWeekendDate obj)
 {
     // set the properties from the Indico.DAL.ReturnShippingAddressWeekendDate
     this.ID          = obj.ID;
     this.CompanyName = obj.CompanyName;
 }