import { ApiClientFactory } from '../core/api.client.factory'; import { WeatherToday } from '../model/envWeatherToday.model'; export class EnvWeatherTodayService { constructor(private factory: ApiClientFactory) { } async loadEnvWeatherToday(projectId: string): Promise { const Today =await this.factory.entity .get(`/api/web/projects/${projectId}/scenes/env/weather`); return Today; } }