示例#1
0
 public FilterViewModel()
 {
     businessLayer = new EFBusinessLogicLayer();
     MinimumLimit  = businessLayer.GetPriceLimit(true);
     MaximumLimit  = businessLayer.GetPriceLimit(false);
 }
示例#2
0
 public FilterViewModel(IBusinessLogicLayer businessLayerParam)
 {
     businessLayer = businessLayerParam;
     MinimumLimit  = businessLayer.GetPriceLimit(true);
     MaximumLimit  = businessLayer.GetPriceLimit(false);
 }