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.

20 lines
441 B

using Infrastructure.Application.Entites.Settings;
using System.Linq;
namespace Infrastructure.Application.Services.Settings
{
public interface ISettingService
{
Setting GetSetting(string name);
IQueryable<Setting> Table();
IQueryable<Setting> ReadonlyTable();
void AddSetting(Setting setting);
void DeleteSetting(Setting setting);
void UpdateSetting(Setting setting);
}
}