public AlarmBLL(string project, int ledger, int uid) { this.Project = project; this.Ledger = ledger; this.SysUid = uid; dal = new AlarmDAL(project, ledger, uid); }
public AlarmBLL(int _ledger, int _uid) { this.Ledger = _ledger; this.SysUid = _uid; dal = new AlarmDAL(_ledger, _uid); }