Exemplo n.º 1
0
 /// <summary>
 /// Delete Entity AD_ACOES
 /// </summary>
 /// <param name="entity"></param>
 public void Delete(AD_ACOES entity)
 {
     UnitOfWork.AcoesRepository.Delete(entity);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Update Entity AD_ACOES
 /// </summary>
 /// <param name="entity"></param>
 public void Update(AD_ACOES entity)
 {
     UnitOfWork.AcoesRepository.Edit(entity);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Add Entity AD_ACOES
 /// </summary>
 /// <param name="entity"></param>
 public void Add(AD_ACOES entity)
 {
     UnitOfWork.AcoesRepository.Add(entity);
 }