Exemplo n.º 1
0
 public Boolean ModificarDB(List <seg_Menu_info> lista, ref string MensajeError)
 {
     try
     {
         seg_Menu_data data = new seg_Menu_data();
         return(data.ModificarDB(lista, ref MensajeError));
     }
     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("", "ModificarDB", ex.Message), ex)
               {
                   EntityType = typeof(seg_Menu_bus)
               };
     }
 }
Exemplo n.º 2
0
 public seg_Menu_info Get_Info_Menu(int idmenu, ref string MensajeError)
 {
     try
     {
         seg_Menu_data data = new seg_Menu_data();
         return(data.Get_Info_Menu(idmenu, ref MensajeError));
     }
     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("", "Get_Info_Menu", ex.Message), ex)
               {
                   EntityType = typeof(seg_Menu_bus)
               };
     }
 }
Exemplo n.º 3
0
 public List <seg_Menu_info> Get_List_Menu_x_Empresa_x_Usuario(string idUsuario, int idEmpresa, ref string MensajeError)
 {
     try
     {
         seg_Menu_data data = new seg_Menu_data();
         return(data.Get_List_Menu_x_Empresa_x_Usuario(idUsuario, idEmpresa, ref MensajeError));
     }
     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("", "Get_List_Menu_x_Empresa_x_Usuario", ex.Message), ex)
               {
                   EntityType = typeof(seg_Menu_bus)
               };
     }
 }
Exemplo n.º 4
0
 public Boolean ExisteRelacionMenu(int idMenu, ref string MensajeError)
 {
     try
     {
         Boolean       existe = false;
         seg_Menu_data data   = new seg_Menu_data();
         existe = data.ExisteRelacionMenu(idMenu, ref MensajeError);
         return(existe);
     }
     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("", "ExisteRelacionMenu", ex.Message), ex)
               {
                   EntityType = typeof(seg_Menu_bus)
               };
     }
 }
Exemplo n.º 5
0
 public Boolean Anular_Menu(int idMenu, ref string MensajeError)
 {
     try
     {
         seg_Menu_data data = new seg_Menu_data();
         data.Anular(idMenu, ref MensajeError);
         if (MensajeError != "")
         {
             return(false);
         }
         return(true);
     }
     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("", "Anular_Menu", ex.Message), ex)
               {
                   EntityType = typeof(seg_Menu_bus)
               };
     }
 }