-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeSetCN.cs
33 lines (29 loc) · 910 Bytes
/
ChangeSetCN.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using MSDNVideo.AccesoDatos;
using MSDNVideo.Comun;
using System.Security.Permissions;
namespace MSDNVideo.LogicaNegocio
{
/// <summary>
/// Operaciones de negocio sobre Changesets
/// </summary>
public class ChangeSetCN
{
#region Operaciones públicas
/// <summary>
/// Actualiza los cambios acumulados en un Changeset
/// Seguridad: Administradores
/// </summary>
/// <param name="changeSet">Changeset a actualizar</param>
[PrincipalPermission(SecurityAction.Demand, Authenticated = true, Role = "Admin")]
public void ActualizarChangeSet(DisconnectedChangeSet changeSet)
{
ChangeSetAD changeSetAD = new ChangeSetAD();
changeSetAD.ActualizarChangeSet(changeSet);
}
#endregion
}
}