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.
iot/projects/Infrastructure/Application/Services/Settings/ISettingService.cs

15 lines
408 B

using Infrastructure.Application.Entites.Settings;
using System.Linq;
namespace Infrastructure.Application.Services.Settings
{
public interface ISettingService
{
Setting Get(string name);
IQueryable<Setting> Table();
IQueryable<Setting> ReadonlyTable();
void Add(Setting setting);
void Delete(Setting setting);
void Update(Setting setting);
}
}