-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBGC_ScheduleBO.cs
84 lines (82 loc) · 1.86 KB
/
BGC_ScheduleBO.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Types;
namespace Erecruitment_BO
{
public class BGC_ScheduleBO:IBGCScheduleBO
{
int bgc_test_id;
DateTime from_date;
DateTime to_date;
string location;
int administrator_id;
public int BGC_Test_Id
{
get
{
return bgc_test_id;
}
set
{
bgc_test_id = value;
}
}
public DateTime From_Date
{
get
{
return from_date;
}
set
{
from_date = value;
}
}
public DateTime To_Date
{
get
{
return to_date;
}
set
{
to_date = value;
}
}
public int Administrator_Id
{
get
{
return administrator_id;
}
set
{
administrator_id = value;
}
}
public string Location
{
get
{
return location;
}
set
{
location = value;
}
}
public BGC_ScheduleBO()
{ }
public BGC_ScheduleBO(int bgc_test_id,DateTime from_date,DateTime to_date,string location,int administrator_id)
{
this.bgc_test_id = bgc_test_id;
this.from_date = from_date;
this.to_date = to_date;
this.location = location;
this.administrator_id = administrator_id;
}
}
}