public JointsViewAdapter(AppCompatActivity currentContext, SupportFragment fragment, List <SpoolJoints> lsObjs, DateTime dWeld)
 {
     _ins               = this;
     this._lsObjs       = lsObjs;
     _currentContext    = currentContext;
     _fragment          = fragment;
     mFragmentContainer = currentContext.FindViewById <FrameLayout>(Resource.Id.fragmentContainer);
     _dWeld             = dWeld;
 }
 public SubmitWeldLog(List <SpoolJoints> splJoint, JointsViewAdapter jointsView)
 {
     _splJoint   = splJoint;
     _jointsView = jointsView;
 }
Пример #3
0
 public void fill_list()
 {
     adapter = new JointsViewAdapter(act, this, _spl.SpoolJoints, _dWeld);
     rv.SetAdapter(adapter);
 }