Created
January 30, 2018 20:19
-
-
Save ismcagdas/64a624bdf96df9e85037a9dab3baf7a2 to your computer and use it in GitHub Desktop.
Acme.HeroShop - InitialHeroBuilder.cs
This file contains 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 InitialHeroBuilder | |
{ | |
private readonly HeroShopDbContext _context; | |
public InitialHeroBuilder(HeroShopDbContext context) | |
{ | |
_context = context; | |
} | |
public void Create() | |
{ | |
if (!_context.HeroCompanies.Any(e=> e.Name == "Marvel Studios")) | |
{ | |
var marvel = new HeroCompany | |
{ | |
Name = "Marvel Studios" | |
}; | |
_context.HeroCompanies.Add(marvel); | |
_context.SaveChanges(); | |
_context.Heroes.Add(new Hero | |
{ | |
HeroCompanyId = marvel.Id, | |
Name = "Spider-Man" | |
}); | |
_context.Heroes.Add(new Hero | |
{ | |
HeroCompanyId = marvel.Id, | |
Name = "Hulk" | |
}); | |
_context.Heroes.Add(new Hero | |
{ | |
HeroCompanyId = marvel.Id, | |
Name = "Iron Man" | |
}); | |
_context.Heroes.Add(new Hero | |
{ | |
HeroCompanyId = marvel.Id, | |
Name = "Captain America" | |
}); | |
_context.Heroes.Add(new Hero | |
{ | |
HeroCompanyId = marvel.Id, | |
Name = "Thor" | |
}); | |
_context.Heroes.Add(new Hero | |
{ | |
HeroCompanyId = marvel.Id, | |
Name = "Black Widow" | |
}); | |
} | |
if (!_context.HeroCompanies.Any(e => e.Name == "DC Comics")) | |
{ | |
var marvel = new HeroCompany | |
{ | |
Name = "DC Comics" | |
}; | |
_context.HeroCompanies.Add(marvel); | |
_context.SaveChanges(); | |
_context.Heroes.Add(new Hero | |
{ | |
HeroCompanyId = marvel.Id, | |
Name = "Batman" | |
}); | |
_context.Heroes.Add(new Hero | |
{ | |
HeroCompanyId = marvel.Id, | |
Name = "Green Lantern" | |
}); | |
_context.Heroes.Add(new Hero | |
{ | |
HeroCompanyId = marvel.Id, | |
Name = "Aquaman" | |
}); | |
_context.Heroes.Add(new Hero | |
{ | |
HeroCompanyId = marvel.Id, | |
Name = "Superman" | |
}); | |
_context.Heroes.Add(new Hero | |
{ | |
HeroCompanyId = marvel.Id, | |
Name = "Wonder Woman" | |
}); | |
_context.Heroes.Add(new Hero | |
{ | |
HeroCompanyId = marvel.Id, | |
Name = "The Flash" | |
}); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment