示例#1
0
文件: MapActions.cs 项目: dedels/Bunk
 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);
 }
示例#2
0
 protected void LoadData()
 {
     ViewResults.DataSource = BizfitechChallenge.BLL.ViewProfileBLL.SearchUser(tbSearchFirstName.Text, tbSearchSurname.Text);
     ViewResults.DataBind();
 }