/// <summary> /// get list of CCompound by field /// </summary> /// <param name="fieldName">field name</param> /// <param name="value">value</param> /// <returns>list</returns> public List <CCompound> GetAllBy(CCompound.CCompoundFields fieldName, object value) { return(_dataObject.SelectByField(fieldName.ToString(), value)); }
/// <summary> /// delete CCompound by field. /// </summary> /// <param name="fieldName">field name</param> /// <param name="value">value</param> /// <returns>true for successfully deleted</returns> public bool Delete(CCompound.CCompoundFields fieldName, object value) { return(_dataObject.DeleteByField(fieldName.ToString(), value)); }