You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
765 B
38 lines
765 B
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();
|
|
}
|
|
}
|