using System; using System.Xml.Serialization; using Yavsc.Model.FrontOffice.Catalog; namespace SalesCatalog.XmlImplementation { /// /// Xml catalog. /// Inherits of the Catalog class, /// to make it serializable from and to Xml /// [XmlRoot] public class XmlCatalog : Catalog { /// /// Initializes a new instance of the class. /// public XmlCatalog () { } } }