public void SetUp()
 {
     var kernel = new StandardKernel(new AppModule());
     salesTax = kernel.Get<ITaxType>();
 }
Esempio n. 2
0
 public Item(string Name, Decimal Price, ITaxType TaxType)
 {
     this.Name    = Name;
     this.Price   = Price;
     this.TaxType = TaxType;
 }