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