11 lines
276 B
C#
11 lines
276 B
C#
|
using SiteManagementSystem_SoftwareEngineering_.Entity;
|
|||
|
|
|||
|
namespace SiteManagementSystem_SoftwareEngineering_.Interface
|
|||
|
{
|
|||
|
public interface IUserManageService
|
|||
|
{
|
|||
|
public void AddUser(User user);
|
|||
|
public (bool, string) IsUserExist(ref User user);
|
|||
|
}
|
|||
|
}
|