Created
July 22, 2018 15:40
-
-
Save ivanpaulovich/0836d7d7a4b41b4fa44240b5ab643375 to your computer and use it in GitHub Desktop.
PrimitiveObsession.cs
This file contains hidden or 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
public class Customer | |
{ | |
public int Id { get; set; } | |
public string FirstName { get; set; } | |
public string LastName { get; set; } | |
public string Email { get; set; } | |
public string SSN { get; set; } | |
} | |
public class RegisterCustomerUseCase | |
{ | |
public void Execute( | |
string firstName, | |
string lastName, | |
string email, | |
string ssn) | |
{ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment