private void btnRefresh_Click(object sender, EventArgs e)
 {
     ldtCashierPeriod = loCashierPeriod.getCashierPeriodByDate(dtpFromDate.Value, dtpToDate.Value);
     GlobalFunctions.refreshGrid(ref dgvLists, ldtCashierPeriod);
 }
Ejemplo n.º 2
0
 public DataTable getCashierPeriodByDate(DateTime pStartDate, DateTime pEndDate)
 {
     return(loCashierPeriod.getCashierPeriodByDate(pStartDate, pEndDate));
 }