public EmployeeDB() { using (DasherStation.common.SqlHelper h = new DasherStation.common.SqlHelper()) { strConn = h.SqlConn; } }
public PayRollTempalteDB() { using (DasherStation.common.SqlHelper sqlHelper = new DasherStation.common.SqlHelper()) { this.strConn = sqlHelper.SqlConn; } }
public DepartmentDB() { using (DasherStation.common.SqlHelper h = new DasherStation.common.SqlHelper()) { strConn = h.SqlConn; } }
public DataSet QueryEPInfo() { string strSQL = "select id,no from equipmentInformation"; using (DasherStation.common.SqlHelper h = new DasherStation.common.SqlHelper()) { return(h.QueryForDateSet(strSQL)); } }