Create multiple records with function add record

Create multiple records with function add record

Hello, I would like to know if it is possible to do a function that allows me to create 10, 20,50 or 100 records at the same time. The records will be exactly the same.


I would like to do it with this function:

void funcion_comodin.Crear_comodin(Ficha_de_productos cn)
{
    insert into Stock1
    [
        Added_User = zoho.loginuser
        Comprador = "Isaias"
        Condicion = "Nuevo"
        Destino = "MercadoLibre"
        Fecha = zoho.currentdate
        Imagen = cn.Imagen_del_producto
        Link_de_ebay = cn.Link_de_compra
        Lugar_de_Compra = "ARTICULO COMODIN"
        Marca = cn.Marca
        Modelo = cn.Modelo
        Numero_de_Serie = cn.Numero_de_serie
        Status = ("Stock en camino")
        Tipo_de_compra = "Compra en Linea"
    ]
}