예제 #1
0
 public PriceBL()
 {
     _dep = new PriceBLDep
     {
         PriceDal    = new PriceDal(),
         PriceQtyDal = new PriceQtyDal(),
         ParamNoBL   = new ParameterNoBL()
     };
 }
예제 #2
0
 public PriceBL(PriceBLDep dep)
 {
     _dep = dep;
 }