Browse Source
Merge pull request #116 from gerryge/gerry
Invoker parameter name is not the same with the parameter value
pull/120/head
Engincan VESKE
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/EventHub.Domain/Events/Event.cs
|
|
@ -66,7 +66,7 @@ namespace EventHub.Events |
|
|
: base(id) |
|
|
: base(id) |
|
|
{ |
|
|
{ |
|
|
OrganizationId = organizationId; |
|
|
OrganizationId = organizationId; |
|
|
UrlCode = Check.NotNullOrWhiteSpace(urlCode, urlCode, EventConsts.UrlCodeLength, EventConsts.UrlCodeLength); |
|
|
UrlCode = Check.NotNullOrWhiteSpace(urlCode, nameof(urlCode), EventConsts.UrlCodeLength, EventConsts.UrlCodeLength); |
|
|
|
|
|
|
|
|
SetTitle(title); |
|
|
SetTitle(title); |
|
|
SetDescription(description); |
|
|
SetDescription(description); |
|
|
|