Skip to content

Instantly share code, notes, and snippets.

@DavidSSL
Created May 1, 2013 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidSSL/acd2515a4fecc640a23e to your computer and use it in GitHub Desktop.
Save DavidSSL/acd2515a4fecc640a23e to your computer and use it in GitHub Desktop.
public Member(List<Offer> assignedOffers, string firstName, string lastName, string email)
{
_assignedOffers = assignedOffers;
FirstName = firstName;
LastName = lastName;
Email = email;
}
public Offer(Member memberAssigned, OfferType type, DateTime dateExpiring, int value)
{
MemberAssigned = memberAssigned;
Type = type;
DateExpiring = dateExpiring;
Value = value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment