ComplianceServer/oldcode/IBLL/Level2/IL2_SOFT_REFUNDAPPLAY_Q.cs

16 lines
496 B
C#

using System;
using System.Collections.Generic;
using WX.CRM.Common;
using WX.CRM.Model.Entity;
namespace WX.CRM.IBLL.Level2
{
public interface IL2_SOFT_REFUNDAPPLAY_Q
{
L2_SOFT_REFUNDAPPLAY getRefundapplay(decimal orderId, string username);
List<Model.Entity.L2_SOFT_REFUNDAPPLAY> GetList(ref Pager pager, decimal? orderId, string username, decimal? orderstatus, DateTime? ctime, DateTime? etime);
L2_SOFT_REFUNDAPPLAY getRefundapplay(decimal pkid);
}
}