Connected.Common/Common/Settings/SettingsService.cs
2022-12-07 14:05:43 +01:00

38 lines
765 B
C#

using System.Collections.Immutable;
using Connected.Configuration.Settings;
using Connected.ServiceModel;
using Connected.Services;
namespace Common.Settings;
internal class SettingsService : EntityService<int>, ISettingsService
{
public SettingsService(IContext context) : base(context)
{
}
public Task Delete(PrimaryKeyArgs<int> args)
{
throw new NotImplementedException();
}
public Task<ImmutableList<ISetting>> Query()
{
throw new NotImplementedException();
}
public Task<ISetting?> Select(PrimaryKeyArgs<int> args)
{
throw new NotImplementedException();
}
public Task<ISetting?> Select(NameArgs args)
{
throw new NotImplementedException();
}
public Task Update(SettingsArgs args)
{
throw new NotImplementedException();
}
}