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