示例#1
0
 public bool Update(int SiteID, string Name, string Code, string ImagePreview, int PositionID, string ControlPath, int Original_ContentModuleTypeID)
 {
     ContentModuleTypeDAC contentmoduletypeComponent = new ContentModuleTypeDAC();
     return contentmoduletypeComponent.UpdateContentModuleType(SiteID, Name, Code,ImagePreview,PositionID,ControlPath, Original_ContentModuleTypeID);
 }
示例#2
0
 public bool Update(ContentModuleType contentmoduletype, int old_contentModuleTypeID)
 {
     ContentModuleTypeDAC contentmoduletypeComponent = new ContentModuleTypeDAC();
     return contentmoduletypeComponent.UpdateContentModuleType(contentmoduletype.SiteID, contentmoduletype.Name, contentmoduletype.Code,contentmoduletype.ImagePreview,contentmoduletype.PositionID,contentmoduletype.ControlPath, old_contentModuleTypeID);
 }