27 lines
779 B
C#
27 lines
779 B
C#
|
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> _weeklytimespan;
|
|||
|
|
|||
|
public WeeklyTimeSpanController(IRepository<WeeklyTimeSpan> weeklytimespan, WeeklyTimeSpanService weeklytimespanService)
|
|||
|
{
|
|||
|
_weeklytimespanService = weeklytimespanService;
|
|||
|
_weeklytimespan = weeklytimespan;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|