Skip to content
This repository was archived by the owner on Jul 10, 2024. It is now read-only.

Commit 30c657a

Browse files
authored
Update 2. Build out BackEnd and Refactor.md
1 parent 1a83316 commit 30c657a

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

docs/2. Build out BackEnd and Refactor.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -233,24 +233,24 @@ We're also going to take this opportunity to rename the `Models` directory in th
233233
```
234234
1. Add an `SessionAttendee.cs` class with the following code:
235235
```csharp
236-
using System;
237-
using System.Collections.Generic;
238-
using System.Linq;
239-
using System.Threading.Tasks;
236+
using System;
237+
using System.Collections.Generic;
238+
using System.Linq;
239+
using System.Threading.Tasks;
240240

241-
namespace BackEnd.Data
242-
{
243-
public class SessionAttendee
244-
{
245-
public int SessionID { get; set; }
241+
namespace BackEnd.Data
242+
{
243+
public class SessionAttendee
244+
{
245+
public int SessionID { get; set; }
246246

247-
public Session Session { get; set; }
247+
public Session Session { get; set; }
248248

249-
public int AttendeeID { get; set; }
249+
public int AttendeeID { get; set; }
250250

251-
public Attendee Attendee { get; set; }
252-
}
253-
}
251+
public Attendee Attendee { get; set; }
252+
}
253+
}
254254
```
255255
1. Add an `Attendee.cs` class with the following code:
256256
```csharp

0 commit comments

Comments
 (0)