mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-04 16:49:36 +00:00
16 lines
384 B
C#
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.");
|
|
}
|
|
}
|