143
|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
|
|
6 |
namespace FingersDance.Data |
|
7 |
{ |
|
8 |
[Serializable] |
|
9 |
public class Project |
|
10 |
{ |
|
11 |
private User _user = new User(); |
|
12 |
private Cutting _cutting = new Cutting(); |
|
13 |
|
|
14 |
#region Constructor |
|
15 |
public Project(User u, Cutting c) |
|
16 |
{ |
|
17 |
_user = u; |
|
18 |
_cutting = c; |
|
19 |
} |
|
20 |
|
|
21 |
public Project() |
|
22 |
{} |
|
23 |
|
|
24 |
#endregion |
|
25 |
|
|
26 |
#region Properties |
|
27 |
public User User |
|
28 |
{ |
|
29 |
get { return _user; } |
|
30 |
set { _user = value; } |
|
31 |
} |
|
32 |
public Cutting Cutting |
|
33 |
{ |
|
34 |
get { return _cutting; } |
|
35 |
set { _cutting = value; } |
|
36 |
} |
|
37 |
|
|
38 |
#endregion |
|
39 |
} |
|
40 |
|
|
41 |
} |