-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUser.cs
70 lines (59 loc) · 1.74 KB
/
User.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Final_Project.DAL;
namespace Final_Project.BLL
{
public class User
{
private int userId;
private string password;
private int employeeId;
public int UserId { get => userId; set => userId = value; }
public string Password { get => password; set => password = value; }
public int EmployeeId { get => employeeId; set => employeeId = value; }
public void SaveUser(User user)
{
UserDB.SaveRecord(user);
}
public void UpdateUser(string user, string password)
{
UserDB.UpdateRecord(user,password);
}
public void DeleteUser(int id)
{
UserDB.DeleteRecord(id);
}
public User SearchUser(int userValue)
{
return UserDB.SearchRecord(userValue);
}
public bool IsDuplicateUserEmployeeId(int userId)
{
return UserDB.IsDuplicated(userId);
}
public List<string> CheckUser(string userName, string password, int flag)
{
return UserDB.SearchUserRecord(userName,password,flag);
}
public bool UpdateUserOK(string userName, string password, int flag)
{
List<string> userEmp = UserDB.SearchUserRecord(userName, password, flag);
if (userEmp != null)
{
UserDB.UpdateRecord(userEmp[0],password);
}
else
{
return false;
}
return true;
}
public List<User> GetAllUsers()
{
return UserDB.GetAllRecords();
}
}
}