-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotificacionesCN.cs
36 lines (32 loc) · 1.17 KB
/
NotificacionesCN.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using MSDNVideo.Comun;
using MSDNVideo.AccesoDatos;
using System.Security.Permissions;
namespace MSDNVideo.LogicaNegocio
{
/// <summary>
/// Operaciones de negocio sobre notificaciones
/// </summary>
public class NotificacionesCN
{
#region Operaciones públicas
/// <summary>
/// Obtiene todas las notificaciones del sistema
/// Seguridad: Administradores
/// </summary>
/// <param name="incluirSocio">Incluye la entidad socio en el resultado</param>
/// <param name="incluirPelicula">Incluye la entidad película en el resultado</param>
/// <returns>Lista de notificaciones</returns>
[PrincipalPermission(SecurityAction.Demand, Authenticated = true, Role = "Admin")]
public BindingList<Notificacion> ObtenerNotificaciones(bool incluirSocio, bool incluirPelicula)
{
NotificacionesAD notificacionesAD = new NotificacionesAD();
return notificacionesAD.ObtenerNotificaciones(incluirSocio, incluirPelicula);
}
#endregion
}
}