public static BColectieLucrariEtape GetListByParamIdLucrare(int pIdLucrare, CDefinitiiComune.EnumStare pStare, IDbTransaction pTranzactie) { BColectieLucrariEtape lstDLucrariEtape = new BColectieLucrariEtape(); using (DataSet ds = DLucrariEtape.GetListByParamIdLucrare(pIdLucrare, pStare, pTranzactie)) { foreach (DataRow dr in ds.Tables[0].Rows) { lstDLucrariEtape.Add(new BLucrariEtape(dr)); } } return(lstDLucrariEtape); }
public static List <int> GetListIdEtapeByParamIdLucrare(int pIdLucrare, CDefinitiiComune.EnumStare pStare, IDbTransaction pTranzactie) { List <int> lstDLucrariEtape = new List <int>(); using (DataSet ds = DLucrariEtape.GetListByParamIdLucrare(pIdLucrare, pStare, pTranzactie)) { foreach (DataRow dr in ds.Tables[0].Rows) { BLucrariEtape lucrareEtapa = new BLucrariEtape(dr); lstDLucrariEtape.Add(lucrareEtapa.IdEtapa); } } return(lstDLucrariEtape); }