14 lines
173 B
C#
14 lines
173 B
C#
|
12 years ago
|
using System;
|
||
|
|
|
||
|
|
namespace SalesCatalog.Model
|
||
|
|
{
|
||
|
|
public class Note:Text
|
||
|
|
{
|
||
|
|
public override string ToHtml ()
|
||
|
|
{
|
||
|
|
return string.Format("<quote>{0}</quote>",Val);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|