using HanyadikHetVan.Data.Entities; using HanyadikHetVan.Interface; using HanyadikHetVan.Services; using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace HanyadikHetVan.Controllers { [Route("api/weeklytimespan")] [ApiController] public class WeeklyTimeSpanController { private readonly WeeklyTimeSpanService _weeklytimespanService; private readonly IRepository _weeklytimespan; public WeeklyTimeSpanController(IRepository weeklytimespan, WeeklyTimeSpanService weeklytimespanService) { _weeklytimespanService = weeklytimespanService; _weeklytimespan = weeklytimespan; } } }