예제 #1
0
 public ThingsReport(DynThingsEntities dbSource)
 {
     db = dbSource;
     repoEndpointTypes = new EndPointTypesRepository(dbSource);
     repoThings        = new ThingsRepository(dbSource);
 }
예제 #2
0
 public ThingsController(ThingsRepository thingsRepository)
 {
     _thingsRepository = thingsRepository;
 }