Пример #1
0
 public List <tb_Empresa_Info> Get_List_Empresa_x_Usuario(string IdUsuario)
 {
     try
     {
         tb_Empresa_Data        EmD = new tb_Empresa_Data();
         List <tb_Empresa_Info> le  = new List <tb_Empresa_Info>();
         le = EmD.Get_List_Empresa_x_Usuario(IdUsuario);
         return(le);
     }
     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("", "ObtenerlistEmpresa", ex.Message), ex)
               {
                   EntityType = typeof(tb_Empresa_Bus)
               };
     }
 }