19 lines
409 B
C#
19 lines
409 B
C#
using InSituLaboratory.Entities;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace InSituLaboratory.IService
|
|
{
|
|
public interface IUserService : IBaseService
|
|
{
|
|
SysUser Login(string username, string password);
|
|
|
|
IEnumerable<SysUser> GetUsers(string key);
|
|
|
|
bool CheckUserName(string userName);
|
|
}
|
|
}
|