示例#1
0
 public static StoreOutDetailModel From(StoreOutDetail storeOutDetail)
 {
     return new StoreOutDetailModel(storeOutDetail);
 }
示例#2
0
 public StoreOutDetailModel(StoreOutDetail storeOutDetail)
     : base(storeOutDetail)
 {
     if (storeOutDetail.StoreOut != null)
     {
         this.StoreOutId = storeOutDetail.StoreOut.Id;
         this.StoreOutCodeNo = storeOutDetail.StoreOut.CodeNo;
     }
 }