Example #1
0
 public MemoChecker(IQueryable <Memo> memos, IMemoDueNotifier notifier)
 {
     _memos    = memos;
     _notifier = notifier;
 }
Example #2
0
 public MemoChecker(IList <Memo> memos, IMemoDueNotifier notifier)
 {
     _memos    = memos;
     _notifier = notifier;
 }
Example #3
0
 public MemoChecker(IQueryable<Memo> memos, IMemoDueNotifier notifier)
 {
     _memos = memos;
     _notifier = notifier;
 }
 public MemoChecker(IQueryable <Memos> _memos, IMemoDueNotifier _notifier)
 {
     memos   = _memos;
     memoDue = _notifier;
 }