public DateTime?ReadNullableDateTime(string name)
 {
     if (!_dto.Exist(name))
     {
         return(null);
     }
     return(_dto.GetValue <DateTime>(name));
 }