private SessionItemViewBinder(View view) : base(view)
 {
     txtTitle       = view.FindViewById <TextView>(Resource.Id.txt_title);
     txtStime       = view.FindViewById <TextView>(Resource.Id.txt_stime);
     txtTime        = view.FindViewById <TextView>(Resource.Id.txt_time);
     txtPlace       = view.FindViewById <TextView>(Resource.Id.txt_place);
     txtCategory    = view.FindViewById <CategoryView>(Resource.Id.txt_category);
     txtLanguage    = view.FindViewById <TextView>(Resource.Id.txt_language);
     imgSpeaker     = view.FindViewById <ImageView>(Resource.Id.img_speaker);
     txtSpeakerName = view.FindViewById <TextView>(Resource.Id.txt_speaker_name);
     btnStar        = view.FindViewById <Com.Like.LikeButton>(Resource.Id.btn_star);
     cardView       = view.FindViewById <View>(Resource.Id.card_view);
 }
 private SessionItemViewBinder(View view)
     : base(view)
 {
     txtTitle = view.FindViewById<TextView>(Resource.Id.txt_title);
     txtStime = view.FindViewById<TextView>(Resource.Id.txt_stime);
     txtTime = view.FindViewById<TextView>(Resource.Id.txt_time);
     txtPlace = view.FindViewById<TextView>(Resource.Id.txt_place);
     txtCategory = view.FindViewById<CategoryView>(Resource.Id.txt_category);
     txtLanguage = view.FindViewById<TextView>(Resource.Id.txt_language);
     imgSpeaker = view.FindViewById<ImageView>(Resource.Id.img_speaker);
     txtSpeakerName = view.FindViewById<TextView>(Resource.Id.txt_speaker_name);
     btnStar = view.FindViewById<Com.Like.LikeButton>(Resource.Id.btn_star);
     cardView = view.FindViewById<View>(Resource.Id.card_view);
 }