13 lines
366 B
C#
13 lines
366 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Soft
|
|
{
|
|
public interface ISOFT_ALLOCATERESLOG_Q
|
|
{
|
|
List<SOFT_ALLOCATERESLOG> GetSOFT_ALLOCATERESLOG(ref Pager pg, string username, decimal olduserid, decimal newuserid, decimal opuserid, DateTime? ctime, DateTime? etime);
|
|
}
|
|
}
|