public void Setup()
 {
     _fcoRepository = A.Fake<IFCORepository>();
     _fcoNotifier = A.Fake<IFCONotifier>();
 }
Example #2
0
 public void Setup()
 {
     _fcoRepository = A.Fake <IFCORepository>();
     _fcoNotifier   = A.Fake <IFCONotifier>();
 }
Example #3
0
 public FCOWatcher(IFCORepository fcoRepository, IFCONotifier fcoNotifer)
 {
     _fcoRepository = fcoRepository;
     _fcoNotifer    = fcoNotifer;
     _lastNotified  = DateTime.Now.AddDays(-1);
 }
 public FCOWatcher(IFCORepository fcoRepository,IFCONotifier fcoNotifer)
 {
     _fcoRepository = fcoRepository;
     _fcoNotifer = fcoNotifer;
     _lastNotified = DateTime.Now.AddDays(-1);
 }