Exemplo n.º 1
0
 public ThingsReport(DynThingsEntities dbSource)
 {
     db = dbSource;
     repoEndpointTypes = new EndPointTypesRepository(dbSource);
     repoThings        = new ThingsRepository(dbSource);
 }
Exemplo n.º 2
0
 public ThingsController(ThingsRepository thingsRepository)
 {
     _thingsRepository = thingsRepository;
 }