-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathActoresCN.cs
45 lines (39 loc) · 1.17 KB
/
ActoresCN.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
37
38
39
40
41
42
43
44
45
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using MSDNVideo.Comun;
using MSDNVideo.AccesoDatos;
namespace MSDNVideo.LogicaNegocio
{
/// <summary>
/// Lógica de negocio asociada a las entidades Actor
/// </summary>
public class ActoresCN
{
#region "Operaciones de mantenimiento"
/// <summary>
/// Obtiene todos los actores del sistema
/// Seguridad: Público
/// </summary>
/// <returns>Lista de actores</returns>
public BindingList<Actor> ObtenerActores()
{
ActoresAD actoresAD = new ActoresAD();
return actoresAD.ObtenerActores();
}
/// <summary>
/// Obtiene los actores por nombre
/// Seguridad: Público
/// </summary>
/// <param name="nombre">Parte del nombre a buscar</param>
/// <returns>Lista de actores</returns>
public BindingList<Actor> ObtenerActoresPorNombre(string nombre)
{
ActoresAD actoresAD = new ActoresAD();
return actoresAD.ObtenerActoresPorNombre(nombre);
}
#endregion
}
}