/Docs/07-Implementacion/Source/trunk/EDUAR_Regular/EDUAR/EDUAR_DataAccess/Common/DATemaContenido.cs
http://blpm.googlecode.com/ · C# · 65 lines · 53 code · 12 blank · 0 comment · 0 complexity · d7abfc7dd0c3e947e091d3e97a6e0e75 MD5 · raw file
- using System;
- using EDUAR_DataAccess.Shared;
- using EDUAR_Entities;
-
- namespace EDUAR_DataAccess.Common
- {
- public class DATemaContenido : DataAccesBase<TemaContenido>
- {
- #region --[Atributos]--
- private const string ClassName = "DATemaContenido";
- #endregion
-
- #region --[Constructor]--
- public DATemaContenido()
- {
- }
-
- public DATemaContenido(DATransaction objDATransaction)
- : base(objDATransaction)
- {
-
- }
- #endregion
-
- #region --[Implementación métodos heredados]--
- public override string FieldID
- {
- get { throw new NotImplementedException(); }
- }
-
- public override string FieldDescription
- {
- get { throw new NotImplementedException(); }
- }
-
- public override TemaContenido GetById(TemaContenido entidad)
- {
- throw new NotImplementedException();
- }
-
- public override void Create(TemaContenido entidad)
- {
- throw new NotImplementedException();
- }
-
- public override void Create(TemaContenido entidad, out int identificador)
- {
- throw new NotImplementedException();
- }
-
- public override void Update(TemaContenido entidad)
- {
- throw new NotImplementedException();
- }
-
- public override void Delete(TemaContenido entidad)
- {
- throw new NotImplementedException();
- }
- #endregion
-
- #region --[Métodos Públicos]--
- #endregion
- }
- }