/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

  1. using System;
  2. using EDUAR_DataAccess.Shared;
  3. using EDUAR_Entities;
  4. namespace EDUAR_DataAccess.Common
  5. {
  6. public class DAEscala : DataAccesBase<Escala>
  7. {
  8. #region --[Atributos]--
  9. private const string ClassName = "DAEscala";
  10. #endregion
  11. #region --[Constructor]--
  12. public DAEscala()
  13. {
  14. }
  15. public DAEscala(DATransaction objDATransaction)
  16. : base(objDATransaction)
  17. {
  18. }
  19. #endregion
  20. #region --[Implementación métodos heredados]--
  21. public override string FieldID
  22. {
  23. get { throw new NotImplementedException(); }
  24. }
  25. public override string FieldDescription
  26. {
  27. get { throw new NotImplementedException(); }
  28. }
  29. public override Escala GetById(Escala entidad)
  30. {
  31. throw new NotImplementedException();
  32. }
  33. public override void Create(Escala entidad)
  34. {
  35. throw new NotImplementedException();
  36. }
  37. public override void Create(Escala entidad, out int identificador)
  38. {
  39. throw new NotImplementedException();
  40. }
  41. public override void Update(Escala entidad)
  42. {
  43. throw new NotImplementedException();
  44. }
  45. public override void Delete(Escala entidad)
  46. {
  47. throw new NotImplementedException();
  48. }
  49. #endregion
  50. #region --[Métodos Públicos]--
  51. #endregion
  52. }
  53. }