Example #1
0
 public static ResultT ThroughFactory <EmitType, ResultT>(
     this ViewResults <EmitType, GenericDocument> results,
     MapActions <ResultT> mapActions,
     ResultT item)
 {
     foreach (var r in results.Rows)
     {
         mapActions.RunMapAction(item, r.Value);
     }
     return(item);
 }
Example #2
0
 protected void LoadData()
 {
     ViewResults.DataSource = BizfitechChallenge.BLL.ViewProfileBLL.SearchUser(tbSearchFirstName.Text, tbSearchSurname.Text);
     ViewResults.DataBind();
 }