Skip to content

Commit 4af2cc8

Browse files
committed
A few cleanups based on experiment with generics
1 parent c5aac25 commit 4af2cc8

File tree

3 files changed

+16
-14
lines changed

3 files changed

+16
-14
lines changed

Accessors.DatabaseAccessors/TodoItemAccessor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public SaveResult<TodoItem> SaveTodoItem(TodoItem todoItem)
5454
{
5555
TodoItemDTO dbModel = mapper.ContractToModel(todoItem);
5656

57-
if(todoItem.Id == Id.Default)
57+
if(todoItem.Id.IsDefault())
5858
{
5959
db.TodoItems.Add(dbModel);
6060
}

Accessors.DatabaseAccessors/TodoListAccessor.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public SaveResult<TodoList> SaveTodoList(TodoList todoList)
7171
{
7272
TodoListDTO dbModel = mapper.ContractToModel(todoList);
7373

74-
if (todoList.Id == Id.Default)
74+
if (todoList.Id.IsDefault())
7575
{
7676
db.TodoLists.Add(dbModel);
7777
}

Shared.DataContracts/Id.cs

+14-12
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,30 @@
44

55
namespace Shared.DataContracts
66
{
7-
public struct Id : IComparable, IComparable<Id>, IEquatable<Id>, IFormattable
7+
public struct Id : IComparable, IComparable<Id>, IEquatable<Id>
88
{
9-
// this would also work genericly
10-
// https://stackoverflow.com/questions/5377237/strongly-typing-id-values-in-c-sharp
119
private readonly Guid _guid;
12-
private static readonly Guid _default = Guid.Empty;
10+
private static readonly Guid _default = default(Guid);
1311

1412
public Id(Guid? guid)
1513
{
16-
_guid = guid ?? Guid.Empty;
14+
_guid = guid ?? _default;
1715
}
1816

19-
public static readonly Id Default = new Id(Guid.Empty);
17+
public bool IsDefault()
18+
{
19+
return this._guid.Equals(_default);
20+
}
21+
22+
public static Id Default()
23+
{
24+
return new Id(_default);
25+
}
2026

2127
public static Id New()
2228
{
2329
return new Id(Guid.NewGuid());
24-
}
30+
}
2531

2632
public static explicit operator Id(Guid guid)
2733
{
@@ -40,7 +46,7 @@ public override bool Equals(object obj)
4046

4147
public int CompareTo(object obj)
4248
{
43-
if(obj is Id)
49+
if (obj is Id)
4450
{
4551
return this.CompareTo((Id)obj);
4652
}
@@ -64,10 +70,6 @@ public override string ToString()
6470
{
6571
return _guid.ToString();
6672
}
67-
public string ToString(string format, IFormatProvider formatProvider)
68-
{
69-
return _guid.ToString(format, formatProvider);
70-
}
7173

7274
public override int GetHashCode()
7375
{

0 commit comments

Comments
 (0)