Exemplo n.º 1
0
    static async Task Main(string[] args)
    {
        IModelService modelService = new ModelService();
        var           modelsIds    = await modelService.GetModelsIds();

        if (!modelsIds.Any())
        {
            for (int i = 0; i <= 10; i++)
            {
                await modelService.AddModel();
            }
        }
        Task.WaitAll();
        foreach (var modelId in modelsIds)
        {
            Console.WriteLine($"ProductID: {modelId}");
        }
    }
Exemplo n.º 2
0
 public IActionResult Post(Model model)
 {
     _modelService.AddModel(model);
     return(Ok(model));
 }