Software_Engineering_Field_.../SiteManagementSystem(Softwa.../Interface/IUserManageService.cs

11 lines
276 B
C#
Raw Normal View History

2024-10-30 17:52:22 +08:00
using SiteManagementSystem_SoftwareEngineering_.Entity;
namespace SiteManagementSystem_SoftwareEngineering_.Interface
{
public interface IUserManageService
{
public void AddUser(User user);
public (bool, string) IsUserExist(ref User user);
}
}