public ScheduleDataProvider(IJsonParser jsonParser , IJsonRepository jsonRepository , IRESTfulURLProvider urlProvider) { this.jsonParser = jsonParser; this.jsonRepository = jsonRepository; this.urlProvider = urlProvider; }
public void TestInitialize() { this.jsonParser = new JsonParser(); this.jsonRepository = new JsonRepository(); this.urlProvider = new RESTfulURLProvider(); this.dataProvider = new ScheduleDataProvider(this.jsonParser , this.jsonRepository , this.urlProvider ); }