--接口,我要继承一个类:tablespublic interface T{ 
 public Tables(string TableName, SqlConnection Connection);
 public override string ToString();
 public void LoadSchemaFromDB();
 public virtual SyncResult Sync(int ObjectID, OperateType OType);
 protected bool EnsureExistsByDB();
} 可以这么写吗?public interface T:tables{ 
 public Tables(string TableName, SqlConnection Connection);
 public override string ToString();
 public void LoadSchemaFromDB();
 public virtual SyncResult Sync(int ObjectID, OperateType OType);
 protected bool EnsureExistsByDB();

该如何实现?