Exemplo n.º 1
0
 public void DoDeleteOtherPricing(ContextInfo contextInfo, List<MESParameterInfo> lstParameters)
 {
     contextInfo.Action = MES_ActionType.Delete;
     OtherPricingBll bll = new OtherPricingBll(contextInfo);
     bll.CallAccessControl();
     bll.DoDelete<tinpotherpricing>(lstParameters);
     GC.Collect();
 }
Exemplo n.º 2
0
 public tinpotherpricing GetSingleOtherPricing(ContextInfo contextInfo, List<MESParameterInfo> lstParameters)
 {
     contextInfo.Action = MES_ActionType.Query;
     OtherPricingBll bll = new OtherPricingBll(contextInfo);
     bll.CallAccessControl();
     tinpotherpricing rs = bll.GetSingleObject<tinpotherpricing>(lstParameters);
     GC.Collect();
     return rs;
 }
Exemplo n.º 3
0
 public DataSet GetOtherPricingRecords(ContextInfo contextInfo, List<MESParameterInfo> lstParameters)
 {
     contextInfo.Action = MES_ActionType.Query;
     OtherPricingBll bll = new OtherPricingBll(contextInfo);
     bll.CallAccessControl();
     DataSet rs = bll.GetSelectedRecords<tinpotherpricing>(lstParameters);
     GC.Collect();
     return rs;
 }
Exemplo n.º 4
0
 public void DoUpdateOtherPricing(ContextInfo contextInfo, tinpotherpricing otherpricing)
 {
     contextInfo.Action = MES_ActionType.Update;
     OtherPricingBll bll = new OtherPricingBll(contextInfo);
     bll.CallAccessControl();
     bll.DoUpdate(otherpricing);
     GC.Collect();
 }
Exemplo n.º 5
0
 public DataSet GetValidOtherPricing(ContextInfo contextInfo, string customerid, DateTime dt)
 {
     contextInfo.Action = MES_ActionType.Query;
     OtherPricingBll bll = new OtherPricingBll(contextInfo);
     bll.CallAccessControl();
     DataSet rs = bll.GetValidOtherPricing(customerid, dt);
     GC.Collect();
     return rs;
 }