public Boolean ModificaItem(tb_CatalogoTipo_Info info, ref string msg)
 {
     try
     {
         tb_CatalogoTipo_Data data = new tb_CatalogoTipo_Data();
         return(data.ModificaDB(info, ref msg));
     }
     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("", "ModificaItem", ex.Message), ex)
               {
                   EntityType = typeof(tb_CatalogoTipo_Bus)
               };
     }
 }
 public List <tb_CatalogoTipo_Info> ObtenerList_Tipo()
 {
     try
     {
         tb_CatalogoTipo_Data data = new tb_CatalogoTipo_Data();
         return(data.Get_List_CatalogoTipo());
     }
     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("", "ObtenerList_Tipo", ex.Message), ex)
               {
                   EntityType = typeof(tb_CatalogoTipo_Bus)
               };
     }
 }