public FoodRegisteredEventHandler(DocumentCollection documentCollection, ITableDataProvider tableDataProvider)
 {
     _documentCollection = documentCollection;
     _tableDataProvider  = tableDataProvider;
 }
示例#2
0
 public CityRegisteredEventHandler(DocumentCollection collection, ITableDataProvider tableDataProvider)
 {
     _collection        = collection;
     _tableDataProvider = tableDataProvider;
 }
 public LocalityAddedEventHandler(ITableDataProvider tableDataProvider, DocumentCollection collection)
 {
     _tableDataProvider = tableDataProvider;
     _collection        = collection;
 }
示例#4
0
 public MenuAddedEventHandler(DocumentCollection collection, ITableDataProvider tableDataProvider)
 {
     _collection        = collection;
     _tableDataProvider = tableDataProvider;
 }
示例#5
0
文件: Types.cs 项目: lazpeng/wooby
 public TableCursor(ITableDataProvider Source, int NumCols)
 {
     this.Source  = Source;
     this.NumCols = NumCols;
 }
 public DealCreatedEventHandler(DocumentCollection collection, ITableDataProvider tableDataProvider)
 {
     _collection        = collection;
     _tableDataProvider = tableDataProvider;
 }
示例#7
0
 public CategoryCreatedEventHandler(ITableDataProvider tableDataProvider, DocumentCollection collection)
 {
     _tableDataProvider = tableDataProvider;
     _collection        = collection;
 }