using Kingdee.BOS; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Gatedge.K3.Pilot.PlugIn.Services.DBService { public class BaseDAL { public Context Context { get; private set; } public BaseDAL(Context context) { this.Context = context; } } }