예제 #1
0
파일: order.cs 프로젝트: ThisIsRandom/shoop
 public Order(IOrderProps props) : base(props.id)
 {
     this._products = props.products;
     this._user     = props.user;
 }
예제 #2
0
 public IOrder create(IOrderProps props)
 {
     return(new Order(props));
 }