shopping-assistant-api/ShoppingAssistantApi.Infrastructure/Services/ServiceBase.cs
2023-10-16 03:22:49 +00:00

16 lines
384 B
C#

namespace ShoppingAssistantApi.Infrastructure.Services;
using MongoDB.Bson;
public abstract class ServiceBase
{
public ObjectId ParseObjectId(string? id)
{
if (ObjectId.TryParse(id, out ObjectId objectId))
{
return objectId;
}
throw new InvalidDataException("Provided id cannot be parsed to a MongoDb ObjectId.");
}
}