public bool Update(int SystemPageId, string Name, string Path, int SecurityAccessTypeId, bool IsActive, Guid RowGuid, DateTime ModifiedDate, int SystemFolderId, int Original_SystemPageId) { SystemPageDAC systempageComponent = new SystemPageDAC(); return(systempageComponent.UpdateSystemPage(SystemPageId, Name, Path, SecurityAccessTypeId, IsActive, RowGuid, DateTime.Now, SystemFolderId, Original_SystemPageId)); }
public bool Update(SystemPage systempage, int old_systemPageId) { SystemPageDAC systempageComponent = new SystemPageDAC(); return(systempageComponent.UpdateSystemPage(systempage.SystemPageId, systempage.Name, systempage.Path, systempage.SecurityAccessTypeId, systempage.IsActive, systempage.RowGuid, DateTime.Now, systempage.SystemFolderId, old_systemPageId)); }