public bool Insert(int SystemPageId, string Name, string Path, int SecurityAccessTypeId, bool IsActive, Guid RowGuid, DateTime ModifiedDate, int SystemFolderId) { SystemPageDAC systempageComponent = new SystemPageDAC(); int id = 0; BusinessLogicLayer.Common.ContentEntityLogic.Insert(ref id, "SP", new Guid(), DateTime.Now); return(systempageComponent.InsertNewSystemPage(id, Name, Path, SecurityAccessTypeId, IsActive, new Guid(), DateTime.Now, SystemFolderId)); }
public bool Insert(SystemPage systempage) { SystemPageDAC systempageComponent = new SystemPageDAC(); return(systempageComponent.InsertNewSystemPage(systempage.SystemPageId, systempage.Name, systempage.Path, systempage.SecurityAccessTypeId, systempage.IsActive, systempage.RowGuid, systempage.ModifiedDate, systempage.SystemFolderId)); }