示例#1
0
 public bool EliminarDB_Todos(int IdEmpresa, ref string message)
 {
     try
     {
         Af_Activo_fijo_Data data = new Af_Activo_fijo_Data();
         return(data.EliminarDB_Todos(IdEmpresa, ref message));
     }
     catch (Exception ex)
     {
         Core.Erp.Info.Log_Exception.LoggingManager.Logger.Log(Core.Erp.Info.Log_Exception.LoggingCategory.Error, ex.Message);
         throw new Core.Erp.Info.Log_Exception.DalException(string.Format("", "EliminarDB", ex.Message), ex)
               {
                   EntityType = typeof(Af_Activo_fijo_Bus)
               };
     }
 }