public void BindGrid()
 {
     try
     {
         grdSales.DataSource = ProductSalesController.GetProductSales(SortDir, "FULLNAME", txtSearchRfid.Text, txtSearchName.Text, LoginUser.ClubId);
         grdSales.DataBind();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }