Exemplo n.º 1
0
 public EFSuggestionRepository(TravelBlogDbContext connection = null)
 {
     if (connection == null)
     {
         this.db = new TravelBlogDbContext();
     }
     else
     {
         this.db = connection;
     }
 }
Exemplo n.º 2
0
 public SampleData(TravelBlogDbContext context)
 {
     _context = context;
 }