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