15 lines
394 B
C#
15 lines
394 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Persistence.Repositories;
|
|
public abstract class AbstractTimeSeriesDataRepository<T> : ITimeSeriesDataRepository<T>
|
|
{
|
|
public Task<IEnumerable<T>> GetGtDate(DateTimeOffset date, CancellationToken token)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|