Beispiel #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();
 }
Beispiel #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;
 }
Beispiel #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;
 }
Beispiel #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();
 }
Beispiel #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;
 }