/Docs/07-Implementacion/Source/trunk/EDUAR_Regular/EDUAR/EDUAR_DataTransferObject/Entities/Package Usuarios/Preceptor.cs
http://blpm.googlecode.com/ · C# · 49 lines · 28 code · 11 blank · 10 comment · 0 complexity · 4df42ee3c9b23b6789706e8331e65ff6 MD5 · raw file
- ///////////////////////////////////////////////////////////
- // Preceptor.cs
- // Implementation of the Class Preceptor
- // Generated by Enterprise Architect
- // Created on: 20-jun-2011 16:21:54
- // Original author: Pablo Nicoliello
- ///////////////////////////////////////////////////////////
-
-
- using System;
- using EDUAR_Entities.Shared;
-
- namespace EDUAR_Entities
- {
- [Serializable]
- public class Preceptor : Personal
- {
- public int idPreceptor { get; set; }
- private Curso _cursos;
-
- public Preceptor()
- {
-
- }
-
- ~Preceptor()
- {
-
- }
-
- //public override void Dispose()
- //{
-
- //}
-
- public Curso cursos
- {
- get
- {
- return _cursos;
- }
- set
- {
- _cursos = value;
- }
- }
-
- }//end Preceptor
- }