public static bool EjecutarValidacionesBeforeDelete(Spartane.Core.Classes.Parentesco.Parentesco obj) { bool ret = true; //NEWBUSINESSRULE_BEFOREDELETE// return(ret); }
public int Update_Datos_Generales(Spartane.Core.Classes.Parentesco.Parentesco entity) { int rta; try { Spartane.Core.Classes.Parentesco.Parentesco ParentescoDB = GetByKey(entity.Clave, false); var paramUpdClave = _dataProvider.GetParameter(); paramUpdClave.ParameterName = "Clave"; paramUpdClave.DbType = DbType.Int32; paramUpdClave.Value = (object)entity.Clave ?? DBNull.Value; var paramUpdDescripcion = _dataProvider.GetParameter(); paramUpdDescripcion.ParameterName = "Descripcion"; paramUpdDescripcion.DbType = DbType.String; paramUpdDescripcion.Value = (object)entity.Descripcion ?? DBNull.Value; var empEntity = _dbContext.ExecuteStoredProcedureList <Spartane.Core.Classes.StoredProcedure.sp_UpdParentesco>("sp_UpdParentesco", paramUpdClave, paramUpdDescripcion).FirstOrDefault(); rta = Convert.ToInt32(empEntity.Clave); } catch (ExceptionBase ex) { throw ex; } catch (Exception ex) { throw new ServiceException(ex.Message, ex); } return(rta); }
public static string ReplaceQuery(string query, Spartane.Core.Classes.Parentesco.Parentesco obj) { //codigo para que reemplace los FLD Regex regex = new Regex(@"FLD\[([^\]]+)\]"); MatchCollection matches = regex.Matches(query); string auxMatch = ""; foreach (Match match in matches) { foreach (Capture capture in match.Captures) { auxMatch = capture.Value.Replace("FLD[", "").Replace("]", ""); PropertyInfo info = obj.GetType().GetProperty(auxMatch); query = GeneralHelper.ReplaceFLD(query, auxMatch, obj, info, capture.Value); } } return(query); }
public static void EjecutarValidacionesAfterListSelAll(Spartane.Core.Classes.Parentesco.Parentesco obj) { //NEWBUSINESSRULE_AFTERLISTSELALL// }
public static void EjecutarValidacionesAfterGet(Spartane.Core.Classes.Parentesco.Parentesco obj) { //NEWBUSINESSRULE_AFTERGET// }
public static void EjecutarValidacionesAfterDelete(Spartane.Core.Classes.Parentesco.Parentesco obj) { //NEWBUSINESSRULE_AFTERDELETE// }