forked from AhmedKabbary/DoQL-WinForms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DatabaseBuilder.cs
42 lines (36 loc) · 869 Bytes
/
DatabaseBuilder.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
using DoQL.Models;
namespace DoQL
{
class DatabaseBuilder
{
private string _name;
private DatabaseType _type;
private string _password = null;
public void SetName(string name)
{
_name = name;
}
public void SetType(DatabaseType type)
{
_type = type;
}
public void SetPassword(string password)
{
_password = password;
}
public Database Build()
{
string id = Guid.NewGuid().ToString();
DateTime now = DateTime.Now;
return new Database
{
Id = id,
Name = _name,
Type = _type,
Created = now,
LastModified = now,
Password = _password
};
}
}
}