public AnswerGenerator(IDBProcCaller caller, ILot lotMaker, ILunch lunchMaker)
 {
     procCaller = caller;
     lot        = lotMaker;
     lunch      = lunchMaker;
     category   = SkillCategory.no;
 }
示例#2
0
 public Lot(IDBProcCaller caller)
 {
     procCaller = caller;
 }
示例#3
0
 public Lunch(IDBProcCaller caller)
 {
     db = caller;
 }