Example #1
0
 public Tareas(string titulo, DateTime vencimiento, int estimacion, Recursos responsable, bool estado)
 {
     Titulo      = titulo;
     Vencimiento = vencimiento;
     Estimacion  = estimacion;
     Responsable = responsable;
     Estado      = estado;
 }
Example #2
0
 public Tareas(int id, string titulo, string vencimiento, int estimacion, Recursos responsable, bool estado)
 {
     this.Id          = id;
     this.Titulo      = titulo;
     this.Vencimiento = vencimiento;
     this.Estimacion  = estimacion;
     this.Responsable = responsable;
     this.Estado      = estado;
 }
Example #3
0
        }                      //constructor implicito

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