using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using MongoDB.Driver;
using Retroactiune.Models;
using Retroactiune.Settings;
namespace Retroactiune.Services
{
///
/// Service that simplifies access to the database for managing FeedbackReceiver items.
///
///
public class FeedbackReceiverService : IFeedbackReceiverService
{
private readonly IMongoCollection _collection;
public FeedbackReceiverService(IMongoClient client, IMongoDbSettings settings)
{
var database = client.GetDatabase(settings.DatabaseName);
_collection = database.GetCollection(settings.FeedbackReceiverCollectionName);
}
public async Task CreateManyAsync(IEnumerable items)
{
try
{
await _collection.InsertManyAsync(items);
}
catch (Exception e)
{
throw new GenericServiceException($"Operation failed: {e.Message}");
}
}
}
}