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