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