11 lines
323 B
C#
11 lines
323 B
C#
using LFlow.Base.Interfaces;
|
|
using LFlow.OnlineManegement.Model;
|
|
|
|
namespace LFlow.OnlineManegement.Service;
|
|
public interface IOnlineManagementService : IService//<VersionDto>
|
|
{
|
|
List<OnlineDto> GetAllOnlineUser(int pageIndex, int pageSize, ref int dataTotal);
|
|
|
|
OnlineDto OnlineRegistered(OnlineDto onlineInfo);
|
|
}
|