コード例 #1
0
 public AccountReceivableOrderViewModel()
 {
     OrderType = new AccountReceivable();
     Customer  = new RequiredCustomerViewModel();
 }
コード例 #2
0
 public LayawayOrderViewModel()
 {
     OrderType = new LayawayDeposit();
     Customer  = new RequiredCustomerViewModel();
 }
コード例 #3
0
 public SpecialOrderViewModel()
 {
     OrderType = new SpecialDeposit();
     Customer  = new RequiredCustomerViewModel();
 }
コード例 #4
0
 public RegularOrderViewModel()
 {
     OrderType = new Regular();
     Customer  = new RequiredCustomerViewModel();
 }
コード例 #5
0
 public AccountReceivableSpecialOrderViewModel()
 {
     OrderType = new AccountReceivableSpecialDeposit();
     Customer  = new RequiredCustomerViewModel();
 }