Esempio n. 1
0
        public void Setup()
        {
            _connectionContext = new FileSystemConnectionContext {
                DataRoot = @"TEST:\ThisIsNotARealDirectory\"
            };

            var fileSystem = new InMemoryFileSystem();

            _dayRepo = new DayRepo(fileSystem);
        }
Esempio n. 2
0
 public DayController()
 {
     _dayRepo = new DayRepo();
 }