DataSaubDto перенесена из слоя репозитория в слой persistence
This commit is contained in:
parent
149647cef3
commit
a329846df7
@ -1,7 +1,7 @@
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Persistence.Models;
|
||||
using Persistence.Repositories;
|
||||
using Persistence.Repository.Data;
|
||||
|
||||
namespace Persistence.API.Controllers;
|
||||
|
||||
|
@ -1,6 +0,0 @@
|
||||
@Persistence.API_HostAddress = http://localhost:5032
|
||||
|
||||
GET {{Persistence.API_HostAddress}}/weatherforecast/
|
||||
Accept: application/json
|
||||
|
||||
###
|
@ -1,5 +1,5 @@
|
||||
using Persistence.Database.Model;
|
||||
using Persistence.Repository.Data;
|
||||
using Persistence.Models;
|
||||
using Xunit;
|
||||
|
||||
namespace Persistence.IntegrationTests.Controllers;
|
||||
|
@ -3,7 +3,6 @@ using Microsoft.Extensions.DependencyInjection;
|
||||
using Persistence.Database.Model;
|
||||
using Persistence.Models;
|
||||
using Persistence.Repositories;
|
||||
using Persistence.Repository.Data;
|
||||
using Persistence.Repository.Repositories;
|
||||
|
||||
namespace Persistence.Repository;
|
||||
|
@ -1,6 +1,4 @@
|
||||
using Persistence.Models;
|
||||
|
||||
namespace Persistence.Repository.Data;
|
||||
namespace Persistence.Models;
|
||||
public class DataSaubDto : ITimeSeriesAbstractDto
|
||||
{
|
||||
public DateTimeOffset Date { get; set; } = DateTimeOffset.UtcNow;
|
Loading…
Reference in New Issue
Block a user