Exemple #1
0
 public Detalles(int Id, string fecha, string tiempo, int IdRecurso, Recursos recurso, int IdTarea, Tareas tarea)
 {
     this.Id        = Id;
     this.Fecha     = fecha;
     this.Tiempo    = tiempo;
     this.IdRecurso = IdRecurso;
     this.Recur     = recurso;
     this.IdTarea   = IdTarea;
     this.Tarea     = tarea;
 }
        }                     //constructor implicito

        public Tareas(int id, string titulo, string vencimiento, string estimacion, int IdRecursos, Recursos responsable, bool estado)
        {
            this.id            = id;
            this.titulo        = titulo;
            this.vencimiento   = vencimiento;
            this.estimacion    = estimacion;
            this.responsableid = IdRecursos;
            this.responsable   = responsable;
            this.estado        = estado;
        }