JPB.DataAccess.Helper.LocalDb.LocalDbManager.OnSetupDone C# (CSharp) Method

OnSetupDone() private method

private OnSetupDone ( ) : void
return void
		internal void OnSetupDone()
		{
			var handler = SetupDone;
			if (handler != null)
			{
				using (var transaction = new TransactionScope())
				{
					using (new ReplicationScope())
					{
						handler(this, new EventArgs());
					}
					transaction.Complete();
				}
			}
		}