Skip to content

Instantly share code, notes, and snippets.

@ivanpaulovich
Created July 22, 2018 15:40
Show Gist options
  • Save ivanpaulovich/0836d7d7a4b41b4fa44240b5ab643375 to your computer and use it in GitHub Desktop.
Save ivanpaulovich/0836d7d7a4b41b4fa44240b5ab643375 to your computer and use it in GitHub Desktop.
PrimitiveObsession.cs
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