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