Esempio n. 1
0
 public static void FillDataBase(TestsStoreContext context)
 {
     context.Statuses.AddRange(Enumeration.GetAll <Status>());
     context.Projects.Add(TestProject);
 }
Esempio n. 2
0
 public BuildRepository(TestsStoreContext testsStoreContext)
 {
     this._testsStoreContext = testsStoreContext;
 }
Esempio n. 3
0
 public ProjectRepository(TestsStoreContext testsStoreContext)
 {
     _testsStoreContext = testsStoreContext;
 }
 public TestResultRepository(TestsStoreContext testsStoreContext)
 {
     _testsStoreContext = testsStoreContext;
 }