/Docs/07-Implementacion/Source/trunk/EDUAR_actual/EDUAR/EDUAR_DataAccess/Common/DAEscala.cs
http://blpm.googlecode.com/ · C# · 65 lines · 53 code · 12 blank · 0 comment · 0 complexity · d928a85e470ab34e24c146ddc8c0c7fe MD5 · raw file
- using System;
- using EDUAR_DataAccess.Shared;
- using EDUAR_Entities;
-
- namespace EDUAR_DataAccess.Common
- {
- public class DAEscala : DataAccesBase<Escala>
- {
- #region --[Atributos]--
- private const string ClassName = "DAEscala";
- #endregion
-
- #region --[Constructor]--
- public DAEscala()
- {
- }
-
- public DAEscala(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 Escala GetById(Escala entidad)
- {
- throw new NotImplementedException();
- }
-
- public override void Create(Escala entidad)
- {
- throw new NotImplementedException();
- }
-
- public override void Create(Escala entidad, out int identificador)
- {
- throw new NotImplementedException();
- }
-
- public override void Update(Escala entidad)
- {
- throw new NotImplementedException();
- }
-
- public override void Delete(Escala entidad)
- {
- throw new NotImplementedException();
- }
- #endregion
-
- #region --[Métodos Públicos]--
- #endregion
- }
- }