コード例 #1
0
 public Tax(ProfileDTO profle, ITaxCategory taxCategory, ITaxManager taxManager)
 {
     _profile     = profle;
     _taxCategroy = taxCategory;
     _taxManager  = taxManager;
 }
コード例 #2
0
 public Tax(ProfileDTO profle)
 {
     _profile     = profle;
     _taxCategroy = new IndiaTaxCategory();
     _taxManager  = new IndiaTaxManager();
 }