// ////////////////////////////////////////////////////////////////////////
 // PUBLIC METHODS
 //
 /// <summary>
 /// Insert an association (direct to DB)
 /// </summary>
 /// <param name="associationsId">associationsId</param>
 /// <param name="unitOfMeasurementId">unitOfMeasurementId</param>       
 /// <param name="module">module</param>
 /// <param name="byDefault">byDefault</param>
 /// <param name="deleted">deleted</param>        
 /// <param name="companyId">companyId</param>
 public void InsertDirect(int associationsId, int unitOfMeasurementId, string module, bool byDefault, bool deleted, int companyId)
 {
     UnitsOfMeasurementAssociationsGateway unitsOfMeasurementAssociationsGateway = new UnitsOfMeasurementAssociationsGateway(null);
     unitsOfMeasurementAssociationsGateway.Insert(associationsId, unitOfMeasurementId, module, byDefault, deleted, companyId);
 }