Example #1
0
        public static string InsertarTipo(string Nombre, string CoordProyect, string CoordInspec, string CorreoProyect, string CorreoInspec)//No necesita el id
        {
            Tipo Obj = new Tipo();

            Obj.Nombre      = Nombre; //Se repite con cada parametro de metodo insertar
            Obj.CoordProy   = CoordProyect;
            Obj.CoordInspec = CoordInspec;
            Obj.CorreoProy  = CorreoProyect;
            Obj.CorreoInsp  = CorreoInspec;

            return(DTipo.DInsertarTipo(Obj));
        }