public bool GuardarCodigoLcr(int id, List <int> items) { bool resp = false; foreach (int item in items) { int result_control; cf_CodigoLcr Codigo = new cf_CodigoLcr(); Codigo.LcrId = id; Codigo.Posicion = 2; Codigo.ItemId = item; result_control = InstanceOF.Establecer_Objeto(Codigo, typeof(cf_CodigoLcr), new List <string>(new string[] { "Id" }), InstanceOF.PROCESO_SP.CF_RELACIONAR_CONTROL); resp = result_control == -1 ? false : true; if (!resp) { return(resp); } } return(resp); }
public bool GuardarCodigoLcr(int id, List<int> items) { bool resp = false; foreach (int item in items) { int result_control; cf_CodigoLcr Codigo = new cf_CodigoLcr(); Codigo.LcrId = id; Codigo.Posicion = 2; Codigo.ItemId = item; result_control = InstanceOF.Establecer_Objeto(Codigo, typeof(cf_CodigoLcr), new List<string>(new string[] { "Id" }), InstanceOF.PROCESO_SP.CF_RELACIONAR_CONTROL); resp = result_control == -1 ? false : true; if (!resp) return resp; } return resp; }