-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBGC_AdministratorBO.cs
70 lines (69 loc) · 1.67 KB
/
BGC_AdministratorBO.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 Types;
namespace Erecruitment_BO
{
public class BGC_AdministratorBO:IBGCAdministratorBO
{
int bgc_administrator_id;
string status;
DateTime status_change_date;
int employee_id;
public int BGC_Administrator_Id
{
get
{
return bgc_administrator_id;
}
set
{
bgc_administrator_id = value;
}
}
public string Status
{
get
{
return status;
}
set
{
status = value;
}
}
public DateTime Status_Change_Date
{
get
{
return status_change_date;
}
set
{
status_change_date = value;
}
}
public int Employee_Id
{
get
{
return employee_id;
}
set
{
employee_id = value;
}
}
public BGC_AdministratorBO()
{ }
public BGC_AdministratorBO(int bgc_administrator_id, string status, DateTime status_change_date,int employee_id)
{
this.bgc_administrator_id = bgc_administrator_id;
this.status = status;
this.status_change_date = status_change_date;
this.employee_id = employee_id;
}
}
}