private ProductPackagingDTO Map(tblProductPackaging tbl)
 {
     var dto = new ProductPackagingDTO
                   {
                       MasterId = tbl.Id,
                       DateCreated = tbl.IM_DateCreated,
                       DateLastUpdated = tbl.IM_DateLastUpdated,
                       StatusId = tbl.IM_Status,
                       Name = tbl.Name,
                       Code = tbl.code,
                       Description = tbl.description,
                       ContainmentMasterId = tbl.Containment ?? Guid.Empty,
                       ReturnableProductMasterId = tbl.ReturnableProduct ?? Guid.Empty
                   };
     return dto;
 }
示例#2
0
 /// <summary>
 /// Create a new tblProductPackaging object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="iM_DateCreated">Initial value of the IM_DateCreated property.</param>
 /// <param name="iM_DateLastUpdated">Initial value of the IM_DateLastUpdated property.</param>
 /// <param name="iM_Status">Initial value of the IM_Status property.</param>
 public static tblProductPackaging CreatetblProductPackaging(global::System.Guid id, global::System.String name, global::System.DateTime iM_DateCreated, global::System.DateTime iM_DateLastUpdated, global::System.Int32 iM_Status)
 {
     tblProductPackaging tblProductPackaging = new tblProductPackaging();
     tblProductPackaging.Id = id;
     tblProductPackaging.Name = name;
     tblProductPackaging.IM_DateCreated = iM_DateCreated;
     tblProductPackaging.IM_DateLastUpdated = iM_DateLastUpdated;
     tblProductPackaging.IM_Status = iM_Status;
     return tblProductPackaging;
 }
示例#3
0
 /// <summary>
 /// Deprecated Method for adding a new object to the tblProductPackaging EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddTotblProductPackaging(tblProductPackaging tblProductPackaging)
 {
     base.AddObject("tblProductPackaging", tblProductPackaging);
 }