using System; using System.Collections.Generic; using WX.CRM.IBLL.Wx; using WX.CRM.Model.Entity; using WX.CRM.Model.QueryMap; namespace WX.CRM.BLL.Wx { public class WX_SZZYORDER_REFUND_BL : DbContextRepository, IWX_SZZYORDER_REFUND { public List GetUserRefund(decimal? szzyOrderId, decimal? innerUserId, decimal? gId, DateTime? yearmonth) { return new DAL.Wx.WX_SZZYORDER_DAL().GetUserRefund(szzyOrderId, innerUserId, gId, yearmonth); } public List GetUserRefundThree(decimal? szzyOrderId, decimal? innerUserId, decimal? gId, DateTime? yearmonth) { return new DAL.Wx.WX_SZZYORDER_DAL().GetUserRefundThree(szzyOrderId, innerUserId, gId, yearmonth); } public List GetGrouperRefund(decimal? gId, DateTime? yearmonth, decimal? eid) { return new DAL.Wx.WX_SZZYORDER_DAL().GetGrouperRefund(gId, yearmonth, eid); } public List GetGrouperRefundThree(decimal? gId, DateTime? yearmonth, decimal? eid) { return new DAL.Wx.WX_SZZYORDER_DAL().GetGrouperRefundThree(gId, yearmonth, eid); } public List GetOrderRefund() { return new DAL.Wx.WX_SZZYORDER_DAL().GetOrderRefund(); } public List GetOrderRefundThree() { return new DAL.Wx.WX_SZZYORDER_DAL().GetOrderRefundThree(); } public List GetOrderRefundDetail(decimal? gId, DateTime? yearmonth, decimal? eid, decimal? isacturalrefund = null) { return new DAL.Wx.WX_SZZYORDER_DAL().GetOrderRefundDetail(gId, yearmonth, eid, isacturalrefund); } public List GetOrderRefundDetailThree(decimal? gId, DateTime? yearmonth, decimal? eid) { return new DAL.Wx.WX_SZZYORDER_DAL().GetOrderRefundDetailThree(gId, yearmonth, eid); } /// /// 修改客户名称的时候顺便修改订单里面的名称 /// public void updateSzzyOrderCname(string resid, string cname) { new DAL.Wx.WX_SZZYORDER_DAL().updateSzzyOrderCname(resid, cname); } /// /// 修改资源是否为线下资源 /// public void UpdateResIsTuiGuang(string resid, decimal orderid) { new DAL.Wx.WX_SZZYORDER_DAL().UpdateResIsTuiGuang(resid, orderid); } } }