-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from Leanwit/master
[csharp] [booking] Remove unused imports and fix variable name in test
- Loading branch information
Showing
17 changed files
with
27 additions
and
71 deletions.
There are no files selected for viewing
4 changes: 1 addition & 3 deletions
4
examples/csharp/csharp-booking-01_base/src/Booking/BookingId.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
using System; | ||
|
||
namespace CodelyTv.Booking | ||
namespace CodelyTv.Booking | ||
{ | ||
public sealed class BookingId | ||
{ | ||
|
4 changes: 1 addition & 3 deletions
4
examples/csharp/csharp-booking-01_base/src/Booking/CustomerName.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
using System; | ||
|
||
namespace CodelyTv.Booking | ||
namespace CodelyTv.Booking | ||
{ | ||
public sealed class CustomerName | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 1 addition & 3 deletions
4
examples/csharp/csharp-booking-02_introduce_parameter_object/src/Booking/BookingId.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
using System; | ||
|
||
namespace CodelyTv.Booking | ||
namespace CodelyTv.Booking | ||
{ | ||
public sealed class BookingId | ||
{ | ||
|
4 changes: 1 addition & 3 deletions
4
examples/csharp/csharp-booking-02_introduce_parameter_object/src/Booking/CustomerName.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
using System; | ||
|
||
namespace CodelyTv.Booking | ||
namespace CodelyTv.Booking | ||
{ | ||
public sealed class CustomerName | ||
{ | ||
|
4 changes: 0 additions & 4 deletions
4
examples/csharp/csharp-booking-02_introduce_parameter_object/src/Booking/DateRange.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 1 addition & 7 deletions
8
examples/csharp/csharp-booking-02_introduce_parameter_object/src/Booking/Discount.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 1 addition & 3 deletions
4
examples/csharp/csharp-booking-03_preserve_whole_object/src/Booking/BookingId.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
using System; | ||
|
||
namespace CodelyTv.Booking | ||
namespace CodelyTv.Booking | ||
{ | ||
public sealed class BookingId | ||
{ | ||
|
4 changes: 1 addition & 3 deletions
4
examples/csharp/csharp-booking-03_preserve_whole_object/src/Booking/CustomerName.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
using System; | ||
|
||
namespace CodelyTv.Booking | ||
namespace CodelyTv.Booking | ||
{ | ||
public sealed class CustomerName | ||
{ | ||
|
4 changes: 0 additions & 4 deletions
4
examples/csharp/csharp-booking-03_preserve_whole_object/src/Booking/DateRange.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 1 addition & 7 deletions
8
examples/csharp/csharp-booking-03_preserve_whole_object/src/Booking/Discount.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 1 addition & 4 deletions
5
examples/csharp/csharp-booking-04_tell_dont_ask/src/Booking/BookingId.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
using System; | ||
|
||
namespace CodelyTv.Booking | ||
namespace CodelyTv.Booking | ||
{ | ||
public sealed class BookingId | ||
{ | ||
private readonly string value; | ||
|
||
public BookingId(string value) => this.value = value; | ||
} | ||
|
||
} |
5 changes: 1 addition & 4 deletions
5
examples/csharp/csharp-booking-04_tell_dont_ask/src/Booking/CustomerName.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
using System; | ||
|
||
namespace CodelyTv.Booking | ||
namespace CodelyTv.Booking | ||
{ | ||
public sealed class CustomerName | ||
{ | ||
private readonly string value; | ||
|
||
public CustomerName(string value) => this.value = value; | ||
} | ||
|
||
} |
8 changes: 1 addition & 7 deletions
8
examples/csharp/csharp-booking-04_tell_dont_ask/src/Booking/Discount.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters