/// <summary>
        /// Metoda de clasa pentru obtinerea unei liste de obiecte de tipul BReprezentant
        /// </summary>
        /// <param name="pId"></param>
        /// <returns>Lista ce corespunde parametrilor</returns>
        /// <remarks></remarks>
        public static BColectieReprezentant GetListByParam(CDefinitiiComune.EnumStare pStare, IDbTransaction pTranzactie)
        {
            BColectieReprezentant lstDClientiReprezentanti = new BColectieReprezentant();

            using (DataSet ds = DClientiReprezentanti.GetListByParam(pStare, pTranzactie))
            {
                foreach (DataRow dr in ds.Tables[0].Rows)
                {
                    lstDClientiReprezentanti.Add(new BClientiReprezentanti(dr));
                }
            }
            return(lstDClientiReprezentanti);
        }