Example #1
0
 public void BaseSetup()
 {
     _context = new GolfDataContext();
 }
Example #2
0
 public void BaseSetup()
 {
     _fakeContext = A.Fake <GolfDataContext>();
 }
Example #3
0
 public RoundRepository(GolfDataContext db)
 {
     _db = db;
 }