bipentity.cs

来自「DocFlow展示了使用.NET开发平台结合Microsoft SQL Serv」· CS 代码 · 共 26 行

CS
26
字号
/* 
*  Copyright (c) 2002 FulcrumWeb. All rights reserved.
*/

using System;

namespace Bip.Components
{
	public abstract class BipEntity : IDisposable
	{
		protected Database Db = new Database();
		
		public BipEntity(){}
		public void Dispose() 
		{
			Db.Dispose();
		}

		public abstract void New();
		public abstract int  Create();
		public abstract void Load(int id);
		public abstract void Update();
		public abstract void Delete();
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?