Example #1
0
 public static Data.Entities.SingularEntity ConvertToEntity(this SingularModel input)
 {
     return(new Data.Entities.SingularEntity
     {
         Id = input.Id,
         Value = input.Value
     });
 }
Example #2
0
 public void SetValue(SingularModel value)
 => _repo.SetValue(value.ConvertToEntity());