/// <summary> /// LoadForViewsFmTypeCompanyId /// </summary> /// <param name="sqlCommand">sqlCommand</param> /// <param name="fmType">fmType</param> /// <param name="companyId">companyId</param> public void LoadForViewsFmTypeCompanyId(string sqlCommand, string fmType, int companyId) { ServicesNavigatorGateway servicesNavigatorGateway = new ServicesNavigatorGateway(Data); servicesNavigatorGateway.LoadForViewsProjectIdCompanyIdFmType(sqlCommand, companyId, fmType); UpdateDataForNavigator(); }
// //////////////////////////////////////////////////////////////////////// // PUBLIC METHODS // /// <summary> /// Load /// </summary> /// <param name="whereClause">whereClause</param> /// <param name="orderByClause">orderByClause</param> /// <param name="conditionValue">conditionValue</param> /// <param name="textForSearch">textForSearch</param> /// <param name="companyId">companyId</param> /// <param name="fmType">fmType</param> public void Load(string whereClause, string orderByClause, string conditionValue, string textForSearch, int companyId, string fmType) { ServicesNavigatorGateway servicesNavigatorGateway = new ServicesNavigatorGateway(Data); servicesNavigatorGateway.LoadWhereOrderBy(whereClause, orderByClause, conditionValue, textForSearch); UpdateDataForNavigator(); }