public void Create(Setting entity) { if (entity != null) { _repository.Insert(entity); } }
public static Setting BuildNewIntegerSetting() { var setting2 = new Setting {Value = 0.ToString()}; return setting2; }