/Docs/07-Implementacion/Source/trunk/EDUAR_actual/EDUAR/EDUAR_DataAccess/Common/DAPerfil.cs

http://blpm.googlecode.com/ · C# · 65 lines · 53 code · 12 blank · 0 comment · 0 complexity · 5c31dd3aeaa63c8b0508b717a3c9ed45 MD5 · raw file

  1. using System;
  2. using EDUAR_DataAccess.Shared;
  3. using EDUAR_Entities;
  4. namespace EDUAR_DataAccess.Common
  5. {
  6. public class DAPerfil : DataAccesBase<Perfil>
  7. {
  8. #region --[Atributos]--
  9. private const string ClassName = "DAPerfil";
  10. #endregion
  11. #region --[Constructor]--
  12. public DAPerfil()
  13. {
  14. }
  15. public DAPerfil(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 Perfil GetById(Perfil entidad)
  30. {
  31. throw new NotImplementedException();
  32. }
  33. public override void Create(Perfil entidad)
  34. {
  35. throw new NotImplementedException();
  36. }
  37. public override void Create(Perfil entidad, out int identificador)
  38. {
  39. throw new NotImplementedException();
  40. }
  41. public override void Update(Perfil entidad)
  42. {
  43. throw new NotImplementedException();
  44. }
  45. public override void Delete(Perfil entidad)
  46. {
  47. throw new NotImplementedException();
  48. }
  49. #endregion
  50. #region --[Métodos Públicos]--
  51. #endregion
  52. }
  53. }