2024-11-20 15:22:23 +05:00
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
2024-11-14 15:17:43 +05:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
2024-12-16 15:38:46 +05:00
|
|
|
|
using DD.Persistence.Models;
|
|
|
|
|
using DD.Persistence.Repositories;
|
2024-11-14 15:17:43 +05:00
|
|
|
|
|
2024-12-16 15:38:46 +05:00
|
|
|
|
namespace DD.Persistence.API.Controllers;
|
2024-11-27 13:08:06 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-12-02 15:14:00 +05:00
|
|
|
|
/// Работа с временными данными
|
2024-11-27 13:08:06 +05:00
|
|
|
|
/// </summary>
|
2024-11-14 15:17:43 +05:00
|
|
|
|
[ApiController]
|
2024-11-20 15:22:23 +05:00
|
|
|
|
[Authorize]
|
2024-11-14 15:17:43 +05:00
|
|
|
|
[Route("api/[controller]")]
|
|
|
|
|
public class DataSaubController : TimeSeriesController<DataSaubDto>
|
|
|
|
|
{
|
|
|
|
|
public DataSaubController(ITimeSeriesDataRepository<DataSaubDto> timeSeriesDataRepository) : base(timeSeriesDataRepository)
|
|
|
|
|
{
|
|
|
|
|
|
2024-11-18 14:22:09 +05:00
|
|
|
|
}
|
2024-11-14 15:17:43 +05:00
|
|
|
|
}
|