public ProductProvider Get(string sysName)
 {
     var model = new ProductProvider(sysName);
     return model;
 }
예제 #2
0
 public PriceResult()
 {
     Currency=new Currency();
     Provider = new ProductProvider();
 }
 public ProductProvider Get(int id)
 {
     var model = new ProductProvider(id);
     return model;
 }