From 5ccc28516f9fd1be3212ec5eaf0d3f0a7d50b942 Mon Sep 17 00:00:00 2001 From: Neil Brommer Date: Mon, 15 Nov 2021 21:57:29 -0800 Subject: [PATCH] Add more missing using statements --- Start/Server/Data/Services/BookmarkContainerService.cs | 1 + Start/Server/Data/Services/BookmarkGroupService.cs | 1 + Start/Server/Data/Services/BookmarkService.cs | 1 + 3 files changed, 3 insertions(+) diff --git a/Start/Server/Data/Services/BookmarkContainerService.cs b/Start/Server/Data/Services/BookmarkContainerService.cs index 95c993d..9c6241d 100644 --- a/Start/Server/Data/Services/BookmarkContainerService.cs +++ b/Start/Server/Data/Services/BookmarkContainerService.cs @@ -5,6 +5,7 @@ using Microsoft.EntityFrameworkCore; using Start.Server.Data.Services.Interfaces; using Start.Server.Extensions; using Start.Server.Models; +using Start.Shared; namespace Start.Server.Data.Services { public class BookmarkContainerService : IBookmarkContainerService { diff --git a/Start/Server/Data/Services/BookmarkGroupService.cs b/Start/Server/Data/Services/BookmarkGroupService.cs index 4951ff2..ac40a26 100644 --- a/Start/Server/Data/Services/BookmarkGroupService.cs +++ b/Start/Server/Data/Services/BookmarkGroupService.cs @@ -5,6 +5,7 @@ using Microsoft.EntityFrameworkCore; using Start.Server.Data.Services.Interfaces; using Start.Server.Extensions; using Start.Server.Models; +using Start.Shared; namespace Start.Server.Data.Services { public class BookmarkGroupService : IBookmarkGroupService { diff --git a/Start/Server/Data/Services/BookmarkService.cs b/Start/Server/Data/Services/BookmarkService.cs index c7edc67..4a40461 100644 --- a/Start/Server/Data/Services/BookmarkService.cs +++ b/Start/Server/Data/Services/BookmarkService.cs @@ -5,6 +5,7 @@ using System.Security; using Microsoft.EntityFrameworkCore; using Start.Server.Data.Services.Interfaces; using Start.Server.Models; +using Start.Shared; namespace Start.Server.Data.Services { public class BookmarkService : IBookmarkService {