Exemple #1
0
        public static PlazoApertura CreatePlazoAperturaVencido(string identificacion)
        {
            var jefe  = JefeDptoMother.CreateJefeDpto(identificacion);
            var plazo = new PlazoApertura(jefe);

            plazo.EstablecerPlazo(DateTime.Now.AddDays(-5), DateTime.Now.AddDays(-1));
            return(plazo);
        }
Exemple #2
0
        public static Actividad CreateActividad()
        {
            var docente       = DocenteMother.CreateDocente("12321313");
            var jefeDpto      = JefeDptoMother.CreateJefeDpto("123313");
            var tipoActividad = new TipoActividad("Tutorias");
            var actividad     = new Actividad(tipoActividad, jefeDpto);

            actividad.Asignar(docente, 10);
            return(actividad);
        }