Example #1
0
        private bool Create()
        {
            this.guid = Guid.NewGuid();

            int rowsAffected = DBStore.Add(
                this.guid,
                this.siteGuid,
                this.moduleID,
                this.name,
                this.description,
                this.ownerName,
                this.ownerEmail,
                this.salesEmail,
                this.supportEmail,
                this.emailFrom,
                this.orderBCCEmail,
                this.phone,
                this.fax,
                this.address,
                this.city,
                this.zoneGuid,
                this.postalCode,
                this.countryGuid,
                this.isClosed,
                this.closedMessage,
                this.created,
                this.createdBy);



            return(rowsAffected > 0);
        }