DataAccess.citas_doctor.Createcitas_doctor C# (CSharp) Method

Createcitas_doctor() public static method

Create a new citas_doctor object.
public static Createcitas_doctor ( global doctor_username, global expediente, global fecha_hora, global prefijo, global tipo ) : citas_doctor
doctor_username global Initial value of the doctor_username property.
expediente global Initial value of the expediente property.
fecha_hora global Initial value of the fecha_hora property.
prefijo global Initial value of the prefijo property.
tipo global Initial value of the tipo property.
return citas_doctor
        public static citas_doctor Createcitas_doctor(global::System.String doctor_username, global::System.Int64 expediente, global::System.DateTime fecha_hora, global::System.Int32 prefijo, global::System.String tipo)
        {
            citas_doctor citas_doctor = new citas_doctor();
            citas_doctor.doctor_username = doctor_username;
            citas_doctor.expediente = expediente;
            citas_doctor.fecha_hora = fecha_hora;
            citas_doctor.prefijo = prefijo;
            citas_doctor.tipo = tipo;
            return citas_doctor;
        }