NOS.Registration.PageRepository.Save C# (CSharp) Method

Save() public method

public Save ( System.PageInfo page, string title, string userName, string comment, string content ) : void
page System.PageInfo
title string
userName string
comment string
content string
return void
		public void Save(PageInfo page, string title, string userName, string comment, string content)
		{
			Pages.ModifyPage(page, title, userName, DateTime.Now, comment, content, new string[] { }, null, SaveMode.Backup);
		}
PageRepository