Skip to content

Instantly share code, notes, and snippets.

@lanekatris
Created October 31, 2015 15:37
Show Gist options
  • Select an option

  • Save lanekatris/9dc417bfeac0eda13400 to your computer and use it in GitHub Desktop.

Select an option

Save lanekatris/9dc417bfeac0eda13400 to your computer and use it in GitHub Desktop.
var domainTeam = new Team() { Name = "Team 1", Description = "..." };
public class TeamRepository
{
public void Create(Team team)
{
var entityFrameworkTeam = new Entities.Team() {
Name = team.Name,
Description = team.Description
};
// db.add
// db.savechanges
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment