/// <summary> /// Method to load all jobcalllogs and set it to the property CallLogListDataSource /// </summary> public void LoadJobCallLogByResources() { using (_callLogModel = new CallLogModel()) { IList<CS_CallLog> lstCallLogs = _callLogModel.GetCallLogByResource( _view.ResourceRepeaterDataItem.JobID, _view.ResourceRepeaterDataItem.EmployeeID, _view.ResourceRepeaterDataItem.EquipmentID); if (null != lstCallLogs) { _view.CallLogListDataSource = lstCallLogs; } } }