diff --git a/bitwarden-server.sln b/bitwarden-server.sln
index 1e96c3aa0c..6dae86dc3f 100644
--- a/bitwarden-server.sln
+++ b/bitwarden-server.sln
@@ -76,6 +76,11 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PostgresMigrations", "util\
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Common", "test\Common\Common.csproj", "{17DA09D7-0212-4009-879E-6B9CFDE5FA60}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Infrastructure.Dapper", "src\Infrastructure.Dapper\Infrastructure.Dapper.csproj", "{AD933445-27CE-4D30-A6ED-9065309464AD}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharedWeb", "src\SharedWeb\SharedWeb.csproj", "{713D44C0-1BC1-4024-96A3-A98A49F33908}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Infrastructure.EntityFramework", "src\Infrastructure.EntityFramework\Infrastructure.EntityFramework.csproj", "{ED880735-0250-43C7-9662-FDC7C7416E7F}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Billing.Test", "test\Billing.Test\Billing.Test.csproj", "{B8639B10-2157-44BC-8CE1-D9EB4B50971F}"
EndProject
Global
@@ -174,6 +179,18 @@ Global
{17DA09D7-0212-4009-879E-6B9CFDE5FA60}.Debug|Any CPU.Build.0 = Debug|Any CPU
{17DA09D7-0212-4009-879E-6B9CFDE5FA60}.Release|Any CPU.ActiveCfg = Release|Any CPU
{17DA09D7-0212-4009-879E-6B9CFDE5FA60}.Release|Any CPU.Build.0 = Release|Any CPU
+ {AD933445-27CE-4D30-A6ED-9065309464AD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {AD933445-27CE-4D30-A6ED-9065309464AD}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {AD933445-27CE-4D30-A6ED-9065309464AD}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {AD933445-27CE-4D30-A6ED-9065309464AD}.Release|Any CPU.Build.0 = Release|Any CPU
+ {713D44C0-1BC1-4024-96A3-A98A49F33908}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {713D44C0-1BC1-4024-96A3-A98A49F33908}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {713D44C0-1BC1-4024-96A3-A98A49F33908}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {713D44C0-1BC1-4024-96A3-A98A49F33908}.Release|Any CPU.Build.0 = Release|Any CPU
+ {ED880735-0250-43C7-9662-FDC7C7416E7F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {ED880735-0250-43C7-9662-FDC7C7416E7F}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {ED880735-0250-43C7-9662-FDC7C7416E7F}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {ED880735-0250-43C7-9662-FDC7C7416E7F}.Release|Any CPU.Build.0 = Release|Any CPU
{B8639B10-2157-44BC-8CE1-D9EB4B50971F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B8639B10-2157-44BC-8CE1-D9EB4B50971F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B8639B10-2157-44BC-8CE1-D9EB4B50971F}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -205,6 +222,9 @@ Global
{EDC0D688-D58C-4CE1-AA07-3606AC6874B8} = {4FDB6543-F68B-4202-9EA6-7FEA984D2D0A}
{0E99A21B-684B-4C59-9831-90F775CAB6F7} = {287CFF34-BBDB-4BC4-AF88-1E19A5A4679B}
{17DA09D7-0212-4009-879E-6B9CFDE5FA60} = {DD5BD056-4AAE-43EF-BBD2-0B569B8DA84F}
+ {AD933445-27CE-4D30-A6ED-9065309464AD} = {DD5BD056-4AAE-43EF-BBD2-0B569B8DA84D}
+ {713D44C0-1BC1-4024-96A3-A98A49F33908} = {DD5BD056-4AAE-43EF-BBD2-0B569B8DA84D}
+ {ED880735-0250-43C7-9662-FDC7C7416E7F} = {DD5BD056-4AAE-43EF-BBD2-0B569B8DA84D}
{B8639B10-2157-44BC-8CE1-D9EB4B50971F} = {DD5BD056-4AAE-43EF-BBD2-0B569B8DA84F}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
diff --git a/bitwarden_license/src/CommCore/Services/ProviderService.cs b/bitwarden_license/src/CommCore/Services/ProviderService.cs
index 9bc513ece3..85d0741276 100644
--- a/bitwarden_license/src/CommCore/Services/ProviderService.cs
+++ b/bitwarden_license/src/CommCore/Services/ProviderService.cs
@@ -3,14 +3,14 @@ using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Bit.Core.Context;
+using Bit.Core.Entities;
+using Bit.Core.Entities.Provider;
using Bit.Core.Enums;
using Bit.Core.Enums.Provider;
using Bit.Core.Exceptions;
using Bit.Core.Models.Business;
using Bit.Core.Models.Business.Provider;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
-using Bit.Core.Models.Table.Provider;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Settings;
diff --git a/bitwarden_license/src/Sso/Controllers/AccountController.cs b/bitwarden_license/src/Sso/Controllers/AccountController.cs
index 6a8a545069..cffdbeab9b 100644
--- a/bitwarden_license/src/Sso/Controllers/AccountController.cs
+++ b/bitwarden_license/src/Sso/Controllers/AccountController.cs
@@ -4,11 +4,11 @@ using System.Linq;
using System.Security.Claims;
using System.Threading.Tasks;
using Bit.Core;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models;
using Bit.Core.Models.Api;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Settings;
diff --git a/bitwarden_license/src/Sso/Sso.csproj b/bitwarden_license/src/Sso/Sso.csproj
index cb9e81ef8d..3c95f46325 100644
--- a/bitwarden_license/src/Sso/Sso.csproj
+++ b/bitwarden_license/src/Sso/Sso.csproj
@@ -12,6 +12,7 @@
+
diff --git a/bitwarden_license/src/Sso/Startup.cs b/bitwarden_license/src/Sso/Startup.cs
index 95d9d6ce01..2b45504543 100644
--- a/bitwarden_license/src/Sso/Startup.cs
+++ b/bitwarden_license/src/Sso/Startup.cs
@@ -3,6 +3,7 @@ using Bit.Core;
using Bit.Core.Context;
using Bit.Core.Settings;
using Bit.Core.Utilities;
+using Bit.SharedWeb.Utilities;
using Bit.Sso.Utilities;
using IdentityServer4.Extensions;
using Microsoft.AspNetCore.Builder;
diff --git a/bitwarden_license/src/Sso/Utilities/DynamicAuthenticationSchemeProvider.cs b/bitwarden_license/src/Sso/Utilities/DynamicAuthenticationSchemeProvider.cs
index c774ba5555..749bba2ad1 100644
--- a/bitwarden_license/src/Sso/Utilities/DynamicAuthenticationSchemeProvider.cs
+++ b/bitwarden_license/src/Sso/Utilities/DynamicAuthenticationSchemeProvider.cs
@@ -5,9 +5,9 @@ using System.Security.Cryptography.X509Certificates;
using System.Text.Json;
using System.Threading;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Settings;
using Bit.Core.Utilities;
diff --git a/bitwarden_license/src/Sso/Utilities/ServiceCollectionExtensions.cs b/bitwarden_license/src/Sso/Utilities/ServiceCollectionExtensions.cs
index 38d9f38b5d..2a9989118d 100644
--- a/bitwarden_license/src/Sso/Utilities/ServiceCollectionExtensions.cs
+++ b/bitwarden_license/src/Sso/Utilities/ServiceCollectionExtensions.cs
@@ -4,6 +4,7 @@ using Bit.Core.Business.Sso;
using Bit.Core.IdentityServer;
using Bit.Core.Settings;
using Bit.Core.Utilities;
+using Bit.SharedWeb.Utilities;
using Bit.Sso.Models;
using IdentityServer4.Models;
using IdentityServer4.ResponseHandling;
diff --git a/bitwarden_license/test/CmmCore.Test/AutoFixture/ProviderUserFixtures.cs b/bitwarden_license/test/CmmCore.Test/AutoFixture/ProviderUserFixtures.cs
index c732fc3bab..8860f52279 100644
--- a/bitwarden_license/test/CmmCore.Test/AutoFixture/ProviderUserFixtures.cs
+++ b/bitwarden_license/test/CmmCore.Test/AutoFixture/ProviderUserFixtures.cs
@@ -18,7 +18,7 @@ namespace Bit.CommCore.Test.AutoFixture.ProviderUserFixtures
public void Customize(IFixture fixture)
{
- fixture.Customize(composer => composer
+ fixture.Customize(composer => composer
.With(o => o.Type, Type)
.With(o => o.Status, Status));
}
diff --git a/bitwarden_license/test/CmmCore.Test/Services/ProviderServiceTests.cs b/bitwarden_license/test/CmmCore.Test/Services/ProviderServiceTests.cs
index 09bf1c2da0..ded503b7b7 100644
--- a/bitwarden_license/test/CmmCore.Test/Services/ProviderServiceTests.cs
+++ b/bitwarden_license/test/CmmCore.Test/Services/ProviderServiceTests.cs
@@ -5,13 +5,13 @@ using System.Threading.Tasks;
using Bit.CommCore.Services;
using Bit.CommCore.Test.AutoFixture.ProviderUserFixtures;
using Bit.Core.Context;
+using Bit.Core.Entities;
+using Bit.Core.Entities.Provider;
using Bit.Core.Enums;
using Bit.Core.Enums.Provider;
using Bit.Core.Exceptions;
using Bit.Core.Models.Business;
using Bit.Core.Models.Business.Provider;
-using Bit.Core.Models.Table;
-using Bit.Core.Models.Table.Provider;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Utilities;
@@ -21,7 +21,7 @@ using Microsoft.AspNetCore.DataProtection;
using NSubstitute;
using NSubstitute.ReturnsExtensions;
using Xunit;
-using ProviderUser = Bit.Core.Models.Table.Provider.ProviderUser;
+using ProviderUser = Bit.Core.Entities.Provider.ProviderUser;
namespace Bit.CommCore.Test.Services
{
diff --git a/src/Admin/Admin.csproj b/src/Admin/Admin.csproj
index d6a7d849b9..fbdd24bd78 100644
--- a/src/Admin/Admin.csproj
+++ b/src/Admin/Admin.csproj
@@ -5,6 +5,7 @@
+
diff --git a/src/Admin/Controllers/OrganizationsController.cs b/src/Admin/Controllers/OrganizationsController.cs
index 613807b7dc..9ea4cff20e 100644
--- a/src/Admin/Controllers/OrganizationsController.cs
+++ b/src/Admin/Controllers/OrganizationsController.cs
@@ -2,9 +2,9 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using Bit.Admin.Models;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Business;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Settings;
diff --git a/src/Admin/Controllers/ProvidersController.cs b/src/Admin/Controllers/ProvidersController.cs
index e27396aa12..6d6d55ca37 100644
--- a/src/Admin/Controllers/ProvidersController.cs
+++ b/src/Admin/Controllers/ProvidersController.cs
@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using Bit.Admin.Models;
-using Bit.Core.Models.Table.Provider;
+using Bit.Core.Entities.Provider;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Settings;
diff --git a/src/Admin/Controllers/ToolsController.cs b/src/Admin/Controllers/ToolsController.cs
index 6007550116..7b56746b10 100644
--- a/src/Admin/Controllers/ToolsController.cs
+++ b/src/Admin/Controllers/ToolsController.cs
@@ -6,7 +6,7 @@ using System.Text;
using System.Threading.Tasks;
using Bit.Admin.Models;
using Bit.Core;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Settings;
diff --git a/src/Admin/Controllers/UsersController.cs b/src/Admin/Controllers/UsersController.cs
index f65b1f97e9..a7793cda33 100644
--- a/src/Admin/Controllers/UsersController.cs
+++ b/src/Admin/Controllers/UsersController.cs
@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using Bit.Admin.Models;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Settings;
diff --git a/src/Admin/Models/CreateUpdateTransactionModel.cs b/src/Admin/Models/CreateUpdateTransactionModel.cs
index ed2f5116c5..ab0dcb27a9 100644
--- a/src/Admin/Models/CreateUpdateTransactionModel.cs
+++ b/src/Admin/Models/CreateUpdateTransactionModel.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
namespace Bit.Admin.Models
{
diff --git a/src/Admin/Models/OrganizationEditModel.cs b/src/Admin/Models/OrganizationEditModel.cs
index 9be51460a6..c587d87c4a 100644
--- a/src/Admin/Models/OrganizationEditModel.cs
+++ b/src/Admin/Models/OrganizationEditModel.cs
@@ -1,10 +1,10 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Business;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
using Bit.Core.Utilities;
diff --git a/src/Admin/Models/OrganizationViewModel.cs b/src/Admin/Models/OrganizationViewModel.cs
index 096acb5bff..49309fcd12 100644
--- a/src/Admin/Models/OrganizationViewModel.cs
+++ b/src/Admin/Models/OrganizationViewModel.cs
@@ -1,9 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Admin.Models
{
diff --git a/src/Admin/Models/OrganizationsModel.cs b/src/Admin/Models/OrganizationsModel.cs
index d8696086b5..da2eb20d6c 100644
--- a/src/Admin/Models/OrganizationsModel.cs
+++ b/src/Admin/Models/OrganizationsModel.cs
@@ -1,4 +1,4 @@
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Admin.Models
{
diff --git a/src/Admin/Models/ProviderEditModel.cs b/src/Admin/Models/ProviderEditModel.cs
index 6d4a2ad39d..f272a2ad7b 100644
--- a/src/Admin/Models/ProviderEditModel.cs
+++ b/src/Admin/Models/ProviderEditModel.cs
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
+using Bit.Core.Entities.Provider;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table.Provider;
namespace Bit.Admin.Models
{
diff --git a/src/Admin/Models/ProviderViewModel.cs b/src/Admin/Models/ProviderViewModel.cs
index 2439c7435f..db963f935a 100644
--- a/src/Admin/Models/ProviderViewModel.cs
+++ b/src/Admin/Models/ProviderViewModel.cs
@@ -1,8 +1,8 @@
using System.Collections.Generic;
using System.Linq;
+using Bit.Core.Entities.Provider;
using Bit.Core.Enums.Provider;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table.Provider;
namespace Bit.Admin.Models
{
diff --git a/src/Admin/Models/ProvidersModel.cs b/src/Admin/Models/ProvidersModel.cs
index dc2d1e87be..02509593d9 100644
--- a/src/Admin/Models/ProvidersModel.cs
+++ b/src/Admin/Models/ProvidersModel.cs
@@ -1,5 +1,4 @@
-using Bit.Core.Models.Table;
-using Bit.Core.Models.Table.Provider;
+using Bit.Core.Entities.Provider;
namespace Bit.Admin.Models
{
diff --git a/src/Admin/Models/TaxRatesModel.cs b/src/Admin/Models/TaxRatesModel.cs
index 54a823a033..92564d82f7 100644
--- a/src/Admin/Models/TaxRatesModel.cs
+++ b/src/Admin/Models/TaxRatesModel.cs
@@ -1,4 +1,4 @@
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Admin.Models
{
diff --git a/src/Admin/Models/UserEditModel.cs b/src/Admin/Models/UserEditModel.cs
index 8e3d070730..c6b07e43ae 100644
--- a/src/Admin/Models/UserEditModel.cs
+++ b/src/Admin/Models/UserEditModel.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
+using Bit.Core.Entities;
using Bit.Core.Models.Business;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
using Bit.Core.Utilities;
diff --git a/src/Admin/Models/UserViewModel.cs b/src/Admin/Models/UserViewModel.cs
index 1bf4095ff3..d4d900a5d4 100644
--- a/src/Admin/Models/UserViewModel.cs
+++ b/src/Admin/Models/UserViewModel.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Admin.Models
{
diff --git a/src/Admin/Models/UsersModel.cs b/src/Admin/Models/UsersModel.cs
index 7c0d146df4..1215a95558 100644
--- a/src/Admin/Models/UsersModel.cs
+++ b/src/Admin/Models/UsersModel.cs
@@ -1,4 +1,4 @@
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Admin.Models
{
diff --git a/src/Admin/Startup.cs b/src/Admin/Startup.cs
index a2127675a7..8ba71017b8 100644
--- a/src/Admin/Startup.cs
+++ b/src/Admin/Startup.cs
@@ -4,6 +4,7 @@ using Bit.Core.Context;
using Bit.Core.Identity;
using Bit.Core.Settings;
using Bit.Core.Utilities;
+using Bit.SharedWeb.Utilities;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Identity;
diff --git a/src/Admin/Views/Tools/TaxRate.cshtml b/src/Admin/Views/Tools/TaxRate.cshtml
index 0144a9f64f..de7d433c25 100644
--- a/src/Admin/Views/Tools/TaxRate.cshtml
+++ b/src/Admin/Views/Tools/TaxRate.cshtml
@@ -1,5 +1,3 @@
-@using Bit.Core.Models.Table
-
@model TaxRatesModel
@{
ViewData["Title"] = "Tax Rates";
diff --git a/src/Api/Api.csproj b/src/Api/Api.csproj
index f02d00718b..a0314d2f39 100644
--- a/src/Api/Api.csproj
+++ b/src/Api/Api.csproj
@@ -16,6 +16,7 @@
+
diff --git a/src/Api/Controllers/AccountsController.cs b/src/Api/Controllers/AccountsController.cs
index 21cc26f1a7..5394316017 100644
--- a/src/Api/Controllers/AccountsController.cs
+++ b/src/Api/Controllers/AccountsController.cs
@@ -7,12 +7,12 @@ using Bit.Api.Models.Request.Accounts;
using Bit.Api.Models.Response;
using Bit.Api.Utilities;
using Bit.Core;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Enums.Provider;
using Bit.Core.Exceptions;
using Bit.Core.Models.Business;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Settings;
diff --git a/src/Api/Controllers/CiphersController.cs b/src/Api/Controllers/CiphersController.cs
index 04045d6735..88ca1994e9 100644
--- a/src/Api/Controllers/CiphersController.cs
+++ b/src/Api/Controllers/CiphersController.cs
@@ -10,9 +10,9 @@ using Bit.Api.Models.Response;
using Bit.Api.Utilities;
using Bit.Core;
using Bit.Core.Context;
+using Bit.Core.Entities;
using Bit.Core.Exceptions;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Settings;
diff --git a/src/Api/Controllers/CollectionsController.cs b/src/Api/Controllers/CollectionsController.cs
index 56baacbc26..3a8d819bff 100644
--- a/src/Api/Controllers/CollectionsController.cs
+++ b/src/Api/Controllers/CollectionsController.cs
@@ -5,8 +5,8 @@ using System.Threading.Tasks;
using Bit.Api.Models.Request;
using Bit.Api.Models.Response;
using Bit.Core.Context;
+using Bit.Core.Entities;
using Bit.Core.Exceptions;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Microsoft.AspNetCore.Authorization;
diff --git a/src/Api/Controllers/DevicesController.cs b/src/Api/Controllers/DevicesController.cs
index 013cecc75c..58777e90e7 100644
--- a/src/Api/Controllers/DevicesController.cs
+++ b/src/Api/Controllers/DevicesController.cs
@@ -4,8 +4,8 @@ using System.Linq;
using System.Threading.Tasks;
using Bit.Api.Models.Request;
using Bit.Api.Models.Response;
+using Bit.Core.Entities;
using Bit.Core.Exceptions;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Microsoft.AspNetCore.Authorization;
diff --git a/src/Api/Controllers/EmergencyAccessController.cs b/src/Api/Controllers/EmergencyAccessController.cs
index b88f1131ed..eef3f2a5b5 100644
--- a/src/Api/Controllers/EmergencyAccessController.cs
+++ b/src/Api/Controllers/EmergencyAccessController.cs
@@ -4,8 +4,8 @@ using System.Threading.Tasks;
using Bit.Api.Models.Request;
using Bit.Api.Models.Request.Organizations;
using Bit.Api.Models.Response;
+using Bit.Core.Entities;
using Bit.Core.Exceptions;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Settings;
diff --git a/src/Api/Controllers/OrganizationSponsorshipsController.cs b/src/Api/Controllers/OrganizationSponsorshipsController.cs
index a9d59adf92..1030493857 100644
--- a/src/Api/Controllers/OrganizationSponsorshipsController.cs
+++ b/src/Api/Controllers/OrganizationSponsorshipsController.cs
@@ -2,8 +2,8 @@
using System.Threading.Tasks;
using Bit.Api.Models.Request.Organizations;
using Bit.Core.Context;
+using Bit.Core.Entities;
using Bit.Core.Exceptions;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Utilities;
diff --git a/src/Api/Controllers/SendsController.cs b/src/Api/Controllers/SendsController.cs
index 3d042f2884..9536d83534 100644
--- a/src/Api/Controllers/SendsController.cs
+++ b/src/Api/Controllers/SendsController.cs
@@ -8,10 +8,10 @@ using Bit.Api.Models.Response;
using Bit.Api.Utilities;
using Bit.Core;
using Bit.Core.Context;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Exceptions;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Settings;
diff --git a/src/Api/Controllers/SyncController.cs b/src/Api/Controllers/SyncController.cs
index cd3cd27c0b..ce64ad65ec 100644
--- a/src/Api/Controllers/SyncController.cs
+++ b/src/Api/Controllers/SyncController.cs
@@ -3,11 +3,11 @@ using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Bit.Api.Models.Response;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Enums.Provider;
using Bit.Core.Exceptions;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Settings;
diff --git a/src/Api/Controllers/TwoFactorController.cs b/src/Api/Controllers/TwoFactorController.cs
index c10527e8aa..ab00b0be59 100644
--- a/src/Api/Controllers/TwoFactorController.cs
+++ b/src/Api/Controllers/TwoFactorController.cs
@@ -6,9 +6,9 @@ using Bit.Api.Models.Request.Accounts;
using Bit.Api.Models.Response;
using Bit.Api.Models.Response.TwoFactor;
using Bit.Core.Context;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Exceptions;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Settings;
diff --git a/src/Api/Models/Public/MemberBaseModel.cs b/src/Api/Models/Public/MemberBaseModel.cs
index 916121139d..913f751a2b 100644
--- a/src/Api/Models/Public/MemberBaseModel.cs
+++ b/src/Api/Models/Public/MemberBaseModel.cs
@@ -1,8 +1,8 @@
using System;
using System.ComponentModel.DataAnnotations;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Public
{
diff --git a/src/Api/Models/Public/Request/CollectionUpdateRequestModel.cs b/src/Api/Models/Public/Request/CollectionUpdateRequestModel.cs
index 5a74229298..68dcfe6e4f 100644
--- a/src/Api/Models/Public/Request/CollectionUpdateRequestModel.cs
+++ b/src/Api/Models/Public/Request/CollectionUpdateRequestModel.cs
@@ -1,5 +1,5 @@
using System.Collections.Generic;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Api.Models.Public.Request
{
diff --git a/src/Api/Models/Public/Request/GroupCreateUpdateRequestModel.cs b/src/Api/Models/Public/Request/GroupCreateUpdateRequestModel.cs
index dd3e6ebfb0..d3e6947d5f 100644
--- a/src/Api/Models/Public/Request/GroupCreateUpdateRequestModel.cs
+++ b/src/Api/Models/Public/Request/GroupCreateUpdateRequestModel.cs
@@ -1,6 +1,6 @@
using System;
using System.Collections.Generic;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Api.Models.Public.Request
{
diff --git a/src/Api/Models/Public/Request/MemberCreateRequestModel.cs b/src/Api/Models/Public/Request/MemberCreateRequestModel.cs
index 965fe04143..fac89b377e 100644
--- a/src/Api/Models/Public/Request/MemberCreateRequestModel.cs
+++ b/src/Api/Models/Public/Request/MemberCreateRequestModel.cs
@@ -1,6 +1,6 @@
using System;
using System.ComponentModel.DataAnnotations;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
using Bit.Core.Utilities;
namespace Bit.Api.Models.Public.Request
diff --git a/src/Api/Models/Public/Request/MemberUpdateRequestModel.cs b/src/Api/Models/Public/Request/MemberUpdateRequestModel.cs
index c251422285..e842c47528 100644
--- a/src/Api/Models/Public/Request/MemberUpdateRequestModel.cs
+++ b/src/Api/Models/Public/Request/MemberUpdateRequestModel.cs
@@ -1,5 +1,5 @@
using System.Collections.Generic;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Api.Models.Public.Request
{
diff --git a/src/Api/Models/Public/Request/OrganizationImportRequestModel.cs b/src/Api/Models/Public/Request/OrganizationImportRequestModel.cs
index 70f787ffab..285d4475d5 100644
--- a/src/Api/Models/Public/Request/OrganizationImportRequestModel.cs
+++ b/src/Api/Models/Public/Request/OrganizationImportRequestModel.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
+using Bit.Core.Entities;
using Bit.Core.Models.Business;
-using Table = Bit.Core.Models.Table;
namespace Bit.Api.Models.Public.Request
{
@@ -51,7 +51,7 @@ namespace Bit.Api.Models.Public.Request
{
var importedGroup = new ImportedGroup
{
- Group = new Table.Group
+ Group = new Group
{
OrganizationId = organizationId,
Name = Name,
diff --git a/src/Api/Models/Public/Request/PolicyUpdateRequestModel.cs b/src/Api/Models/Public/Request/PolicyUpdateRequestModel.cs
index 4afc7c6f0e..239f89afaa 100644
--- a/src/Api/Models/Public/Request/PolicyUpdateRequestModel.cs
+++ b/src/Api/Models/Public/Request/PolicyUpdateRequestModel.cs
@@ -1,5 +1,5 @@
using System;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
using Newtonsoft.Json;
namespace Bit.Api.Models.Public.Request
diff --git a/src/Api/Models/Public/Response/CollectionResponseModel.cs b/src/Api/Models/Public/Response/CollectionResponseModel.cs
index c13dffb66a..263b35d929 100644
--- a/src/Api/Models/Public/Response/CollectionResponseModel.cs
+++ b/src/Api/Models/Public/Response/CollectionResponseModel.cs
@@ -2,8 +2,8 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Public.Response
{
diff --git a/src/Api/Models/Public/Response/GroupResponseModel.cs b/src/Api/Models/Public/Response/GroupResponseModel.cs
index f48ac2c6ea..7629280ce7 100644
--- a/src/Api/Models/Public/Response/GroupResponseModel.cs
+++ b/src/Api/Models/Public/Response/GroupResponseModel.cs
@@ -2,8 +2,8 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Public.Response
{
diff --git a/src/Api/Models/Public/Response/MemberResponseModel.cs b/src/Api/Models/Public/Response/MemberResponseModel.cs
index df2c1ef848..011bebd650 100644
--- a/src/Api/Models/Public/Response/MemberResponseModel.cs
+++ b/src/Api/Models/Public/Response/MemberResponseModel.cs
@@ -2,9 +2,9 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Public.Response
{
diff --git a/src/Api/Models/Public/Response/PolicyResponseModel.cs b/src/Api/Models/Public/Response/PolicyResponseModel.cs
index 6096c03b5a..a4d0c2fd6c 100644
--- a/src/Api/Models/Public/Response/PolicyResponseModel.cs
+++ b/src/Api/Models/Public/Response/PolicyResponseModel.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
using Newtonsoft.Json;
namespace Bit.Api.Models.Public.Response
diff --git a/src/Api/Models/Request/Accounts/KeysRequestModel.cs b/src/Api/Models/Request/Accounts/KeysRequestModel.cs
index de61cce393..b6351f3adb 100644
--- a/src/Api/Models/Request/Accounts/KeysRequestModel.cs
+++ b/src/Api/Models/Request/Accounts/KeysRequestModel.cs
@@ -1,5 +1,5 @@
using System.ComponentModel.DataAnnotations;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Api.Models.Request.Accounts
{
diff --git a/src/Api/Models/Request/Accounts/RegisterRequestModel.cs b/src/Api/Models/Request/Accounts/RegisterRequestModel.cs
index 82ae79b068..c028de5007 100644
--- a/src/Api/Models/Request/Accounts/RegisterRequestModel.cs
+++ b/src/Api/Models/Request/Accounts/RegisterRequestModel.cs
@@ -1,9 +1,9 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
using Bit.Core.Utilities;
using Newtonsoft.Json;
diff --git a/src/Api/Models/Request/Accounts/SetKeyConnectorKeyRequestModel.cs b/src/Api/Models/Request/Accounts/SetKeyConnectorKeyRequestModel.cs
index 0ee46f68a3..030d1adbcd 100644
--- a/src/Api/Models/Request/Accounts/SetKeyConnectorKeyRequestModel.cs
+++ b/src/Api/Models/Request/Accounts/SetKeyConnectorKeyRequestModel.cs
@@ -1,6 +1,6 @@
using System.ComponentModel.DataAnnotations;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Request.Accounts
{
diff --git a/src/Api/Models/Request/Accounts/SetPasswordRequestModel.cs b/src/Api/Models/Request/Accounts/SetPasswordRequestModel.cs
index b71802a1c3..ae5368e9b8 100644
--- a/src/Api/Models/Request/Accounts/SetPasswordRequestModel.cs
+++ b/src/Api/Models/Request/Accounts/SetPasswordRequestModel.cs
@@ -1,6 +1,6 @@
using System.ComponentModel.DataAnnotations;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Request.Accounts
{
diff --git a/src/Api/Models/Request/Accounts/UpdateProfileRequestModel.cs b/src/Api/Models/Request/Accounts/UpdateProfileRequestModel.cs
index 7e6073773d..e92bad863e 100644
--- a/src/Api/Models/Request/Accounts/UpdateProfileRequestModel.cs
+++ b/src/Api/Models/Request/Accounts/UpdateProfileRequestModel.cs
@@ -1,5 +1,5 @@
using System.ComponentModel.DataAnnotations;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Api.Models.Request.Accounts
{
diff --git a/src/Api/Models/Request/CipherRequestModel.cs b/src/Api/Models/Request/CipherRequestModel.cs
index 7485b4ec05..51462ed669 100644
--- a/src/Api/Models/Request/CipherRequestModel.cs
+++ b/src/Api/Models/Request/CipherRequestModel.cs
@@ -2,9 +2,9 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Utilities;
using Core.Models.Data;
using Newtonsoft.Json;
diff --git a/src/Api/Models/Request/CollectionRequestModel.cs b/src/Api/Models/Request/CollectionRequestModel.cs
index bcd7baace5..65b2887a27 100644
--- a/src/Api/Models/Request/CollectionRequestModel.cs
+++ b/src/Api/Models/Request/CollectionRequestModel.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
using Bit.Core.Utilities;
namespace Bit.Api.Models.Request
diff --git a/src/Api/Models/Request/DeviceRequestModels.cs b/src/Api/Models/Request/DeviceRequestModels.cs
index 2528476572..371f159eb5 100644
--- a/src/Api/Models/Request/DeviceRequestModels.cs
+++ b/src/Api/Models/Request/DeviceRequestModels.cs
@@ -1,7 +1,7 @@
using System;
using System.ComponentModel.DataAnnotations;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Request
{
diff --git a/src/Api/Models/Request/EmergencyAccessRequstModels.cs b/src/Api/Models/Request/EmergencyAccessRequstModels.cs
index c76f41d033..a8e9f07a0f 100644
--- a/src/Api/Models/Request/EmergencyAccessRequstModels.cs
+++ b/src/Api/Models/Request/EmergencyAccessRequstModels.cs
@@ -1,6 +1,6 @@
using System.ComponentModel.DataAnnotations;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
using Bit.Core.Utilities;
namespace Bit.Api.Models.Request
diff --git a/src/Api/Models/Request/FolderRequestModel.cs b/src/Api/Models/Request/FolderRequestModel.cs
index ba1eb8f455..e3060bdcc3 100644
--- a/src/Api/Models/Request/FolderRequestModel.cs
+++ b/src/Api/Models/Request/FolderRequestModel.cs
@@ -1,6 +1,6 @@
using System;
using System.ComponentModel.DataAnnotations;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
using Bit.Core.Utilities;
namespace Bit.Api.Models.Request
diff --git a/src/Api/Models/Request/GroupRequestModel.cs b/src/Api/Models/Request/GroupRequestModel.cs
index 8ddd4f6178..2c6eb5c809 100644
--- a/src/Api/Models/Request/GroupRequestModel.cs
+++ b/src/Api/Models/Request/GroupRequestModel.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Api.Models.Request
{
diff --git a/src/Api/Models/Request/InstallationRequestModel.cs b/src/Api/Models/Request/InstallationRequestModel.cs
index 976224f075..9f594f7bb4 100644
--- a/src/Api/Models/Request/InstallationRequestModel.cs
+++ b/src/Api/Models/Request/InstallationRequestModel.cs
@@ -1,5 +1,5 @@
using System.ComponentModel.DataAnnotations;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
using Bit.Core.Utilities;
namespace Bit.Api.Models.Request
diff --git a/src/Api/Models/Request/Organizations/ImportOrganizationUsersRequestModel.cs b/src/Api/Models/Request/Organizations/ImportOrganizationUsersRequestModel.cs
index 5515ea2d33..73fd884dcc 100644
--- a/src/Api/Models/Request/Organizations/ImportOrganizationUsersRequestModel.cs
+++ b/src/Api/Models/Request/Organizations/ImportOrganizationUsersRequestModel.cs
@@ -2,7 +2,6 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Bit.Core.Models.Business;
-using Table = Bit.Core.Models.Table;
namespace Bit.Api.Models.Request.Organizations
{
@@ -27,7 +26,7 @@ namespace Bit.Api.Models.Request.Organizations
{
var importedGroup = new ImportedGroup
{
- Group = new Table.Group
+ Group = new Core.Entities.Group
{
OrganizationId = organizationId,
Name = Name,
diff --git a/src/Api/Models/Request/Organizations/OrganizationCreateRequestModel.cs b/src/Api/Models/Request/Organizations/OrganizationCreateRequestModel.cs
index c1018d277e..8cd0c25142 100644
--- a/src/Api/Models/Request/Organizations/OrganizationCreateRequestModel.cs
+++ b/src/Api/Models/Request/Organizations/OrganizationCreateRequestModel.cs
@@ -1,8 +1,8 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Business;
-using Bit.Core.Models.Table;
using Bit.Core.Utilities;
namespace Bit.Api.Models.Request.Organizations
diff --git a/src/Api/Models/Request/Organizations/OrganizationKeysRequestModel.cs b/src/Api/Models/Request/Organizations/OrganizationKeysRequestModel.cs
index 4c4f712be4..070b03d19a 100644
--- a/src/Api/Models/Request/Organizations/OrganizationKeysRequestModel.cs
+++ b/src/Api/Models/Request/Organizations/OrganizationKeysRequestModel.cs
@@ -1,6 +1,6 @@
using System.ComponentModel.DataAnnotations;
+using Bit.Core.Entities;
using Bit.Core.Models.Business;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Request.Organizations
{
diff --git a/src/Api/Models/Request/Organizations/OrganizationSsoRequestModel.cs b/src/Api/Models/Request/Organizations/OrganizationSsoRequestModel.cs
index d63c1d8d72..77d8b0e342 100644
--- a/src/Api/Models/Request/Organizations/OrganizationSsoRequestModel.cs
+++ b/src/Api/Models/Request/Organizations/OrganizationSsoRequestModel.cs
@@ -4,9 +4,9 @@ using System.ComponentModel.DataAnnotations;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Text.RegularExpressions;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Services;
using Bit.Core.Sso;
using Microsoft.AspNetCore.Authentication.OpenIdConnect;
diff --git a/src/Api/Models/Request/Organizations/OrganizationUpdateRequestModel.cs b/src/Api/Models/Request/Organizations/OrganizationUpdateRequestModel.cs
index b39bf60d36..24cce9710d 100644
--- a/src/Api/Models/Request/Organizations/OrganizationUpdateRequestModel.cs
+++ b/src/Api/Models/Request/Organizations/OrganizationUpdateRequestModel.cs
@@ -1,6 +1,6 @@
using System.ComponentModel.DataAnnotations;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
namespace Bit.Api.Models.Request.Organizations
diff --git a/src/Api/Models/Request/Organizations/OrganizationUserRequestModels.cs b/src/Api/Models/Request/Organizations/OrganizationUserRequestModels.cs
index 24aa5a52ce..afa39a1208 100644
--- a/src/Api/Models/Request/Organizations/OrganizationUserRequestModels.cs
+++ b/src/Api/Models/Request/Organizations/OrganizationUserRequestModels.cs
@@ -3,9 +3,9 @@ using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text.Json;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Utilities;
namespace Bit.Api.Models.Request.Organizations
diff --git a/src/Api/Models/Request/PolicyRequestModel.cs b/src/Api/Models/Request/PolicyRequestModel.cs
index c61ad1aa03..fe3a084bbd 100644
--- a/src/Api/Models/Request/PolicyRequestModel.cs
+++ b/src/Api/Models/Request/PolicyRequestModel.cs
@@ -2,8 +2,8 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text.Json;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Request
{
diff --git a/src/Api/Models/Request/Providers/ProviderSetupRequestModel.cs b/src/Api/Models/Request/Providers/ProviderSetupRequestModel.cs
index e02c90e6ae..f0b5fffe91 100644
--- a/src/Api/Models/Request/Providers/ProviderSetupRequestModel.cs
+++ b/src/Api/Models/Request/Providers/ProviderSetupRequestModel.cs
@@ -1,5 +1,5 @@
using System.ComponentModel.DataAnnotations;
-using Bit.Core.Models.Table.Provider;
+using Bit.Core.Entities.Provider;
namespace Bit.Api.Models.Request.Providers
{
diff --git a/src/Api/Models/Request/Providers/ProviderUpdateRequestModel.cs b/src/Api/Models/Request/Providers/ProviderUpdateRequestModel.cs
index b2a57a34ff..339ac3180a 100644
--- a/src/Api/Models/Request/Providers/ProviderUpdateRequestModel.cs
+++ b/src/Api/Models/Request/Providers/ProviderUpdateRequestModel.cs
@@ -1,5 +1,5 @@
using System.ComponentModel.DataAnnotations;
-using Bit.Core.Models.Table.Provider;
+using Bit.Core.Entities.Provider;
using Bit.Core.Settings;
namespace Bit.Api.Models.Request.Providers
diff --git a/src/Api/Models/Request/Providers/ProviderUserRequestModels.cs b/src/Api/Models/Request/Providers/ProviderUserRequestModels.cs
index 52755330fb..923b0680eb 100644
--- a/src/Api/Models/Request/Providers/ProviderUserRequestModels.cs
+++ b/src/Api/Models/Request/Providers/ProviderUserRequestModels.cs
@@ -2,8 +2,8 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
+using Bit.Core.Entities.Provider;
using Bit.Core.Enums.Provider;
-using Bit.Core.Models.Table.Provider;
using Bit.Core.Utilities;
namespace Bit.Api.Models.Request.Providers
diff --git a/src/Api/Models/Request/SendRequestModel.cs b/src/Api/Models/Request/SendRequestModel.cs
index 54ced1bac8..924c4b0971 100644
--- a/src/Api/Models/Request/SendRequestModel.cs
+++ b/src/Api/Models/Request/SendRequestModel.cs
@@ -1,9 +1,9 @@
using System;
using System.ComponentModel.DataAnnotations;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Exceptions;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Services;
using Bit.Core.Utilities;
using Newtonsoft.Json;
diff --git a/src/Api/Models/Request/TwoFactorRequestModels.cs b/src/Api/Models/Request/TwoFactorRequestModels.cs
index 3dd7816017..8bf1c3f3fb 100644
--- a/src/Api/Models/Request/TwoFactorRequestModels.cs
+++ b/src/Api/Models/Request/TwoFactorRequestModels.cs
@@ -1,9 +1,9 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Bit.Api.Models.Request.Accounts;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models;
-using Bit.Core.Models.Table;
using Fido2NetLib;
namespace Bit.Api.Models.Request
diff --git a/src/Api/Models/Request/UpdateDomainsRequestModel.cs b/src/Api/Models/Request/UpdateDomainsRequestModel.cs
index 6cf78b1c33..9ba4334fa6 100644
--- a/src/Api/Models/Request/UpdateDomainsRequestModel.cs
+++ b/src/Api/Models/Request/UpdateDomainsRequestModel.cs
@@ -1,6 +1,6 @@
using System.Collections.Generic;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
using Newtonsoft.Json;
namespace Bit.Api.Models.Request
diff --git a/src/Api/Models/Response/ApiKeyResponseModel.cs b/src/Api/Models/Response/ApiKeyResponseModel.cs
index ce500eb492..4bae0882c6 100644
--- a/src/Api/Models/Response/ApiKeyResponseModel.cs
+++ b/src/Api/Models/Response/ApiKeyResponseModel.cs
@@ -1,6 +1,6 @@
using System;
+using Bit.Core.Entities;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Response
{
diff --git a/src/Api/Models/Response/AttachmentResponseModel.cs b/src/Api/Models/Response/AttachmentResponseModel.cs
index ef601c3410..dcb5e041d0 100644
--- a/src/Api/Models/Response/AttachmentResponseModel.cs
+++ b/src/Api/Models/Response/AttachmentResponseModel.cs
@@ -1,8 +1,8 @@
using System.Collections.Generic;
using System.Linq;
+using Bit.Core.Entities;
using Bit.Core.Models.Api;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
using Bit.Core.Utilities;
diff --git a/src/Api/Models/Response/CipherResponseModel.cs b/src/Api/Models/Response/CipherResponseModel.cs
index 8884e091bc..0ef56da662 100644
--- a/src/Api/Models/Response/CipherResponseModel.cs
+++ b/src/Api/Models/Response/CipherResponseModel.cs
@@ -1,10 +1,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Api;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
using Core.Models.Data;
using Newtonsoft.Json;
diff --git a/src/Api/Models/Response/CollectionResponseModel.cs b/src/Api/Models/Response/CollectionResponseModel.cs
index f9e41ad079..c3809cb1d2 100644
--- a/src/Api/Models/Response/CollectionResponseModel.cs
+++ b/src/Api/Models/Response/CollectionResponseModel.cs
@@ -1,9 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using Bit.Core.Entities;
using Bit.Core.Models.Api;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Response
{
diff --git a/src/Api/Models/Response/DeviceResponseModel.cs b/src/Api/Models/Response/DeviceResponseModel.cs
index c724370123..acf4b846f7 100644
--- a/src/Api/Models/Response/DeviceResponseModel.cs
+++ b/src/Api/Models/Response/DeviceResponseModel.cs
@@ -1,7 +1,7 @@
using System;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Response
{
diff --git a/src/Api/Models/Response/DomainsResponseModel.cs b/src/Api/Models/Response/DomainsResponseModel.cs
index 7c1746f4fe..73f7c18e39 100644
--- a/src/Api/Models/Response/DomainsResponseModel.cs
+++ b/src/Api/Models/Response/DomainsResponseModel.cs
@@ -1,9 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
using Newtonsoft.Json;
namespace Bit.Api.Models.Response
diff --git a/src/Api/Models/Response/EmergencyAccessResponseModel.cs b/src/Api/Models/Response/EmergencyAccessResponseModel.cs
index d20ed23823..61a7260ad7 100644
--- a/src/Api/Models/Response/EmergencyAccessResponseModel.cs
+++ b/src/Api/Models/Response/EmergencyAccessResponseModel.cs
@@ -1,10 +1,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Api;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
using Core.Models.Data;
diff --git a/src/Api/Models/Response/FolderResponseModel.cs b/src/Api/Models/Response/FolderResponseModel.cs
index 0c129a3385..2f780ec1d4 100644
--- a/src/Api/Models/Response/FolderResponseModel.cs
+++ b/src/Api/Models/Response/FolderResponseModel.cs
@@ -1,6 +1,6 @@
using System;
+using Bit.Core.Entities;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Response
{
diff --git a/src/Api/Models/Response/GroupResponseModel.cs b/src/Api/Models/Response/GroupResponseModel.cs
index 4db9339d38..9bede72e4a 100644
--- a/src/Api/Models/Response/GroupResponseModel.cs
+++ b/src/Api/Models/Response/GroupResponseModel.cs
@@ -1,9 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using Bit.Core.Entities;
using Bit.Core.Models.Api;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Response
{
diff --git a/src/Api/Models/Response/InstallationResponseModel.cs b/src/Api/Models/Response/InstallationResponseModel.cs
index 6ffdade3cc..68e1524b14 100644
--- a/src/Api/Models/Response/InstallationResponseModel.cs
+++ b/src/Api/Models/Response/InstallationResponseModel.cs
@@ -1,5 +1,5 @@
-using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
+using Bit.Core.Models.Api;
namespace Bit.Api.Models.Response
{
diff --git a/src/Api/Models/Response/KeysResponseModel.cs b/src/Api/Models/Response/KeysResponseModel.cs
index 75277eb23b..32c2e23532 100644
--- a/src/Api/Models/Response/KeysResponseModel.cs
+++ b/src/Api/Models/Response/KeysResponseModel.cs
@@ -1,6 +1,6 @@
using System;
+using Bit.Core.Entities;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Response
{
diff --git a/src/Api/Models/Response/OrganizationKeysResponseModel.cs b/src/Api/Models/Response/OrganizationKeysResponseModel.cs
index c8c1529e11..e0f8a738ed 100644
--- a/src/Api/Models/Response/OrganizationKeysResponseModel.cs
+++ b/src/Api/Models/Response/OrganizationKeysResponseModel.cs
@@ -1,6 +1,6 @@
using System;
+using Bit.Core.Entities;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Response
{
diff --git a/src/Api/Models/Response/OrganizationResponseModel.cs b/src/Api/Models/Response/OrganizationResponseModel.cs
index dd3877e550..f2576b806d 100644
--- a/src/Api/Models/Response/OrganizationResponseModel.cs
+++ b/src/Api/Models/Response/OrganizationResponseModel.cs
@@ -1,9 +1,9 @@
using System;
using System.Linq;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Api;
using Bit.Core.Models.Business;
-using Bit.Core.Models.Table;
using Bit.Core.Utilities;
namespace Bit.Api.Models.Response
diff --git a/src/Api/Models/Response/OrganizationSsoResponseModel.cs b/src/Api/Models/Response/OrganizationSsoResponseModel.cs
index 91f1f3cf69..0c9e8127f3 100644
--- a/src/Api/Models/Response/OrganizationSsoResponseModel.cs
+++ b/src/Api/Models/Response/OrganizationSsoResponseModel.cs
@@ -1,6 +1,6 @@
-using Bit.Core.Models.Api;
+using Bit.Core.Entities;
+using Bit.Core.Models.Api;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
namespace Bit.Api.Models.Response
diff --git a/src/Api/Models/Response/OrganizationUserResponseModel.cs b/src/Api/Models/Response/OrganizationUserResponseModel.cs
index a46acc85ab..03ad0a817d 100644
--- a/src/Api/Models/Response/OrganizationUserResponseModel.cs
+++ b/src/Api/Models/Response/OrganizationUserResponseModel.cs
@@ -1,10 +1,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Api;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Utilities;
namespace Bit.Api.Models.Response
diff --git a/src/Api/Models/Response/PolicyResponseModel.cs b/src/Api/Models/Response/PolicyResponseModel.cs
index 4a840ec5a4..f28bef85d3 100644
--- a/src/Api/Models/Response/PolicyResponseModel.cs
+++ b/src/Api/Models/Response/PolicyResponseModel.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
using Newtonsoft.Json;
namespace Bit.Api.Models.Response
diff --git a/src/Api/Models/Response/ProfileResponseModel.cs b/src/Api/Models/Response/ProfileResponseModel.cs
index 45810d0376..96da687891 100644
--- a/src/Api/Models/Response/ProfileResponseModel.cs
+++ b/src/Api/Models/Response/ProfileResponseModel.cs
@@ -2,9 +2,9 @@
using System.Collections.Generic;
using System.Linq;
using Bit.Api.Models.Response.Providers;
+using Bit.Core.Entities;
using Bit.Core.Models.Api;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Response
{
diff --git a/src/Api/Models/Response/Providers/ProviderOrganizationResponseModel.cs b/src/Api/Models/Response/Providers/ProviderOrganizationResponseModel.cs
index acfd7a3a01..29412186c2 100644
--- a/src/Api/Models/Response/Providers/ProviderOrganizationResponseModel.cs
+++ b/src/Api/Models/Response/Providers/ProviderOrganizationResponseModel.cs
@@ -1,7 +1,7 @@
using System;
+using Bit.Core.Entities.Provider;
using Bit.Core.Models.Api;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table.Provider;
namespace Bit.Api.Models.Response.Providers
{
diff --git a/src/Api/Models/Response/Providers/ProviderResponseModel.cs b/src/Api/Models/Response/Providers/ProviderResponseModel.cs
index 73ebafc5ac..f4fabd2145 100644
--- a/src/Api/Models/Response/Providers/ProviderResponseModel.cs
+++ b/src/Api/Models/Response/Providers/ProviderResponseModel.cs
@@ -1,6 +1,6 @@
using System;
+using Bit.Core.Entities.Provider;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table.Provider;
namespace Bit.Api.Models.Response.Providers
{
diff --git a/src/Api/Models/Response/Providers/ProviderUserResponseModel.cs b/src/Api/Models/Response/Providers/ProviderUserResponseModel.cs
index 775f1587bb..b50196678e 100644
--- a/src/Api/Models/Response/Providers/ProviderUserResponseModel.cs
+++ b/src/Api/Models/Response/Providers/ProviderUserResponseModel.cs
@@ -1,8 +1,8 @@
using System;
+using Bit.Core.Entities.Provider;
using Bit.Core.Enums.Provider;
using Bit.Core.Models.Api;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table.Provider;
using Bit.Core.Utilities;
namespace Bit.Api.Models.Response.Providers
diff --git a/src/Api/Models/Response/SendAccessResponseModel.cs b/src/Api/Models/Response/SendAccessResponseModel.cs
index 7c39abde3f..5690298008 100644
--- a/src/Api/Models/Response/SendAccessResponseModel.cs
+++ b/src/Api/Models/Response/SendAccessResponseModel.cs
@@ -1,8 +1,8 @@
using System;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Api;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
using Bit.Core.Utilities;
using Newtonsoft.Json;
diff --git a/src/Api/Models/Response/SendResponseModel.cs b/src/Api/Models/Response/SendResponseModel.cs
index cdfcaf6db8..f11e3dd347 100644
--- a/src/Api/Models/Response/SendResponseModel.cs
+++ b/src/Api/Models/Response/SendResponseModel.cs
@@ -1,8 +1,8 @@
using System;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Api;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
using Bit.Core.Utilities;
using Newtonsoft.Json;
diff --git a/src/Api/Models/Response/SubscriptionResponseModel.cs b/src/Api/Models/Response/SubscriptionResponseModel.cs
index 054e929a07..c1e8810d73 100644
--- a/src/Api/Models/Response/SubscriptionResponseModel.cs
+++ b/src/Api/Models/Response/SubscriptionResponseModel.cs
@@ -1,9 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using Bit.Core.Entities;
using Bit.Core.Models.Api;
using Bit.Core.Models.Business;
-using Bit.Core.Models.Table;
using Bit.Core.Utilities;
namespace Bit.Api.Models.Response
diff --git a/src/Api/Models/Response/SyncResponseModel.cs b/src/Api/Models/Response/SyncResponseModel.cs
index 616fbe2c3b..a30736f353 100644
--- a/src/Api/Models/Response/SyncResponseModel.cs
+++ b/src/Api/Models/Response/SyncResponseModel.cs
@@ -1,9 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using Bit.Core.Entities;
using Bit.Core.Models.Api;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
using Core.Models.Data;
diff --git a/src/Api/Models/Response/TaxRateResponseModel.cs b/src/Api/Models/Response/TaxRateResponseModel.cs
index 9270b66b88..5d4dfdb162 100644
--- a/src/Api/Models/Response/TaxRateResponseModel.cs
+++ b/src/Api/Models/Response/TaxRateResponseModel.cs
@@ -1,6 +1,6 @@
using System;
+using Bit.Core.Entities;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Response
{
diff --git a/src/Api/Models/Response/TwoFactor/TwoFactorAuthenticatorResponseModel.cs b/src/Api/Models/Response/TwoFactor/TwoFactorAuthenticatorResponseModel.cs
index 1243a1c179..13006c4329 100644
--- a/src/Api/Models/Response/TwoFactor/TwoFactorAuthenticatorResponseModel.cs
+++ b/src/Api/Models/Response/TwoFactor/TwoFactorAuthenticatorResponseModel.cs
@@ -1,7 +1,7 @@
using System;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
using OtpNet;
namespace Bit.Api.Models.Response.TwoFactor
diff --git a/src/Api/Models/Response/TwoFactor/TwoFactorDuoResponseModel.cs b/src/Api/Models/Response/TwoFactor/TwoFactorDuoResponseModel.cs
index 1a5938afd3..98c366a71a 100644
--- a/src/Api/Models/Response/TwoFactor/TwoFactorDuoResponseModel.cs
+++ b/src/Api/Models/Response/TwoFactor/TwoFactorDuoResponseModel.cs
@@ -1,8 +1,8 @@
using System;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Response.TwoFactor
{
diff --git a/src/Api/Models/Response/TwoFactor/TwoFactorEmailResponseModel.cs b/src/Api/Models/Response/TwoFactor/TwoFactorEmailResponseModel.cs
index 52fa90be47..93bbe9e626 100644
--- a/src/Api/Models/Response/TwoFactor/TwoFactorEmailResponseModel.cs
+++ b/src/Api/Models/Response/TwoFactor/TwoFactorEmailResponseModel.cs
@@ -1,7 +1,7 @@
using System;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Response.TwoFactor
{
diff --git a/src/Api/Models/Response/TwoFactor/TwoFactorProviderResponseModel.cs b/src/Api/Models/Response/TwoFactor/TwoFactorProviderResponseModel.cs
index fb509b3702..4213fb9b23 100644
--- a/src/Api/Models/Response/TwoFactor/TwoFactorProviderResponseModel.cs
+++ b/src/Api/Models/Response/TwoFactor/TwoFactorProviderResponseModel.cs
@@ -1,8 +1,8 @@
using System;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Response.TwoFactor
{
diff --git a/src/Api/Models/Response/TwoFactor/TwoFactorRecoverResponseModel.cs b/src/Api/Models/Response/TwoFactor/TwoFactorRecoverResponseModel.cs
index 3fc75450f8..6bff37b124 100644
--- a/src/Api/Models/Response/TwoFactor/TwoFactorRecoverResponseModel.cs
+++ b/src/Api/Models/Response/TwoFactor/TwoFactorRecoverResponseModel.cs
@@ -1,6 +1,6 @@
using System;
+using Bit.Core.Entities;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Response.TwoFactor
{
diff --git a/src/Api/Models/Response/TwoFactor/TwoFactorWebAuthnResponseModel.cs b/src/Api/Models/Response/TwoFactor/TwoFactorWebAuthnResponseModel.cs
index 67bc354bfa..f214955d37 100644
--- a/src/Api/Models/Response/TwoFactor/TwoFactorWebAuthnResponseModel.cs
+++ b/src/Api/Models/Response/TwoFactor/TwoFactorWebAuthnResponseModel.cs
@@ -1,10 +1,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Response.TwoFactor
{
diff --git a/src/Api/Models/Response/TwoFactor/TwoFactorYubiKeyResponseModel.cs b/src/Api/Models/Response/TwoFactor/TwoFactorYubiKeyResponseModel.cs
index 620574be3a..25b5d55c73 100644
--- a/src/Api/Models/Response/TwoFactor/TwoFactorYubiKeyResponseModel.cs
+++ b/src/Api/Models/Response/TwoFactor/TwoFactorYubiKeyResponseModel.cs
@@ -1,7 +1,7 @@
using System;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
namespace Bit.Api.Models.Response.TwoFactor
{
diff --git a/src/Api/Startup.cs b/src/Api/Startup.cs
index a050b76e6d..1953064071 100644
--- a/src/Api/Startup.cs
+++ b/src/Api/Startup.cs
@@ -17,6 +17,7 @@ using Microsoft.IdentityModel.Logging;
using Microsoft.Extensions.Hosting;
using Microsoft.OpenApi.Models;
using System.Collections.Generic;
+using Bit.SharedWeb.Utilities;
#if !OSS
using Bit.CommCore.Utilities;
diff --git a/src/Billing/Billing.csproj b/src/Billing/Billing.csproj
index 7dd2305488..d5b7022fa0 100644
--- a/src/Billing/Billing.csproj
+++ b/src/Billing/Billing.csproj
@@ -6,6 +6,7 @@
+
diff --git a/src/Billing/Controllers/BitPayController.cs b/src/Billing/Controllers/BitPayController.cs
index 7bf56d0199..08d0867358 100644
--- a/src/Billing/Controllers/BitPayController.cs
+++ b/src/Billing/Controllers/BitPayController.cs
@@ -4,6 +4,7 @@ using System.Globalization;
using System.Linq;
using System.Threading.Tasks;
using Bit.Billing.Models;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Repositories;
using Bit.Core.Services;
@@ -109,7 +110,7 @@ namespace Bit.Billing.Controllers
try
{
- var tx = new Core.Models.Table.Transaction
+ var tx = new Transaction
{
Amount = Convert.ToDecimal(invoice.Price),
CreationDate = GetTransactionDate(invoice),
diff --git a/src/Billing/Controllers/PayPalController.cs b/src/Billing/Controllers/PayPalController.cs
index 861e4db996..a8f8a694ee 100644
--- a/src/Billing/Controllers/PayPalController.cs
+++ b/src/Billing/Controllers/PayPalController.cs
@@ -3,8 +3,8 @@ using System.IO;
using System.Text;
using System.Threading.Tasks;
using Bit.Billing.Utilities;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Utilities;
diff --git a/src/Billing/Controllers/StripeController.cs b/src/Billing/Controllers/StripeController.cs
index 7f77d7f6be..07a11f7165 100644
--- a/src/Billing/Controllers/StripeController.cs
+++ b/src/Billing/Controllers/StripeController.cs
@@ -4,9 +4,9 @@ using System.Data.SqlClient;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Business;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Settings;
@@ -17,6 +17,7 @@ using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Stripe;
+using TaxRate = Bit.Core.Entities.TaxRate;
namespace Bit.Billing.Controllers
{
@@ -773,7 +774,7 @@ namespace Bit.Billing.Controllers
if (!string.IsNullOrWhiteSpace(invoice?.CustomerAddress?.Country) && !string.IsNullOrWhiteSpace(invoice?.CustomerAddress?.PostalCode))
{
var localBitwardenTaxRates = await _taxRateRepository.GetByLocationAsync(
- new Bit.Core.Models.Table.TaxRate()
+ new TaxRate()
{
Country = invoice.CustomerAddress.Country,
PostalCode = invoice.CustomerAddress.PostalCode
diff --git a/src/Billing/Startup.cs b/src/Billing/Startup.cs
index 87c54e52d8..28f17ef8cb 100644
--- a/src/Billing/Startup.cs
+++ b/src/Billing/Startup.cs
@@ -3,6 +3,7 @@ using System.Globalization;
using Bit.Core.Context;
using Bit.Core.Settings;
using Bit.Core.Utilities;
+using Bit.SharedWeb.Utilities;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
diff --git a/src/Core/Context/CurrentContentOrganization.cs b/src/Core/Context/CurrentContentOrganization.cs
index 425a0a5244..b915408ff1 100644
--- a/src/Core/Context/CurrentContentOrganization.cs
+++ b/src/Core/Context/CurrentContentOrganization.cs
@@ -1,7 +1,7 @@
using System;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Utilities;
namespace Bit.Core.Context
diff --git a/src/Core/Context/CurrentContentProvider.cs b/src/Core/Context/CurrentContentProvider.cs
index 20f9bb8989..2b4998ed73 100644
--- a/src/Core/Context/CurrentContentProvider.cs
+++ b/src/Core/Context/CurrentContentProvider.cs
@@ -1,9 +1,8 @@
using System;
+using Bit.Core.Entities.Provider;
using Bit.Core.Enums;
using Bit.Core.Enums.Provider;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
-using Bit.Core.Models.Table.Provider;
using Bit.Core.Utilities;
namespace Bit.Core.Context
diff --git a/src/Core/Context/CurrentContext.cs b/src/Core/Context/CurrentContext.cs
index 4aa75a4f31..0eac65f9e0 100644
--- a/src/Core/Context/CurrentContext.cs
+++ b/src/Core/Context/CurrentContext.cs
@@ -3,10 +3,10 @@ using System.Collections.Generic;
using System.Linq;
using System.Security.Claims;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Enums.Provider;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Settings;
using Bit.Core.Utilities;
diff --git a/src/Core/Context/ICurrentContext.cs b/src/Core/Context/ICurrentContext.cs
index 1e18128aba..ff06ced15a 100644
--- a/src/Core/Context/ICurrentContext.cs
+++ b/src/Core/Context/ICurrentContext.cs
@@ -2,8 +2,8 @@
using System.Collections.Generic;
using System.Security.Claims;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Settings;
using Microsoft.AspNetCore.Http;
diff --git a/src/Core/Core.csproj b/src/Core/Core.csproj
index 2d58177886..b70d79092d 100644
--- a/src/Core/Core.csproj
+++ b/src/Core/Core.csproj
@@ -19,7 +19,6 @@
-
@@ -29,25 +28,21 @@
-
-
+
-
-
-
@@ -58,7 +53,6 @@
-
diff --git a/src/Core/Models/Table/Cipher.cs b/src/Core/Entities/Cipher.cs
similarity index 92%
rename from src/Core/Models/Table/Cipher.cs
rename to src/Core/Entities/Cipher.cs
index 34efec5083..ac0d96e892 100644
--- a/src/Core/Models/Table/Cipher.cs
+++ b/src/Core/Entities/Cipher.cs
@@ -4,7 +4,7 @@ using Bit.Core.Models.Data;
using Bit.Core.Utilities;
using Newtonsoft.Json;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class Cipher : ITableObject, ICloneable
{
@@ -18,9 +18,9 @@ namespace Bit.Core.Models.Table
public string Favorites { get; set; }
public string Folders { get; set; }
public string Attachments { get; set; }
- public DateTime CreationDate { get; internal set; } = DateTime.UtcNow;
- public DateTime RevisionDate { get; internal set; } = DateTime.UtcNow;
- public DateTime? DeletedDate { get; internal set; }
+ public DateTime CreationDate { get; set; } = DateTime.UtcNow;
+ public DateTime RevisionDate { get; set; } = DateTime.UtcNow;
+ public DateTime? DeletedDate { get; set; }
public Enums.CipherRepromptType? Reprompt { get; set; }
public void SetNewId()
diff --git a/src/Core/Models/Table/Collection.cs b/src/Core/Entities/Collection.cs
similarity index 70%
rename from src/Core/Models/Table/Collection.cs
rename to src/Core/Entities/Collection.cs
index 85cb287386..e955468d3b 100644
--- a/src/Core/Models/Table/Collection.cs
+++ b/src/Core/Entities/Collection.cs
@@ -2,7 +2,7 @@
using System.ComponentModel.DataAnnotations;
using Bit.Core.Utilities;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class Collection : ITableObject
{
@@ -11,8 +11,8 @@ namespace Bit.Core.Models.Table
public string Name { get; set; }
[MaxLength(300)]
public string ExternalId { get; set; }
- public DateTime CreationDate { get; internal set; } = DateTime.UtcNow;
- public DateTime RevisionDate { get; internal set; } = DateTime.UtcNow;
+ public DateTime CreationDate { get; set; } = DateTime.UtcNow;
+ public DateTime RevisionDate { get; set; } = DateTime.UtcNow;
public void SetNewId()
{
diff --git a/src/Core/Models/Table/CollectionCipher.cs b/src/Core/Entities/CollectionCipher.cs
similarity index 83%
rename from src/Core/Models/Table/CollectionCipher.cs
rename to src/Core/Entities/CollectionCipher.cs
index 7109bdeac6..16ba2297ef 100644
--- a/src/Core/Models/Table/CollectionCipher.cs
+++ b/src/Core/Entities/CollectionCipher.cs
@@ -1,6 +1,6 @@
using System;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class CollectionCipher
{
diff --git a/src/Core/Models/Table/CollectionGroup.cs b/src/Core/Entities/CollectionGroup.cs
similarity index 80%
rename from src/Core/Models/Table/CollectionGroup.cs
rename to src/Core/Entities/CollectionGroup.cs
index 4a34e39a4c..fa3427f825 100644
--- a/src/Core/Models/Table/CollectionGroup.cs
+++ b/src/Core/Entities/CollectionGroup.cs
@@ -1,7 +1,6 @@
using System;
-using Bit.Core.Utilities;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class CollectionGroup
{
diff --git a/src/Core/Models/Table/CollectionUser.cs b/src/Core/Entities/CollectionUser.cs
similarity index 81%
rename from src/Core/Models/Table/CollectionUser.cs
rename to src/Core/Entities/CollectionUser.cs
index 153b130f73..195fd52287 100644
--- a/src/Core/Models/Table/CollectionUser.cs
+++ b/src/Core/Entities/CollectionUser.cs
@@ -1,7 +1,6 @@
using System;
-using Bit.Core.Utilities;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class CollectionUser
{
diff --git a/src/Core/Models/Table/Device.cs b/src/Core/Entities/Device.cs
similarity index 95%
rename from src/Core/Models/Table/Device.cs
rename to src/Core/Entities/Device.cs
index b4e740e5be..b5c48a1311 100644
--- a/src/Core/Models/Table/Device.cs
+++ b/src/Core/Entities/Device.cs
@@ -2,7 +2,7 @@
using System.ComponentModel.DataAnnotations;
using Bit.Core.Utilities;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class Device : ITableObject
{
diff --git a/src/Core/Models/Table/EmergencyAccess.cs b/src/Core/Entities/EmergencyAccess.cs
similarity index 80%
rename from src/Core/Models/Table/EmergencyAccess.cs
rename to src/Core/Entities/EmergencyAccess.cs
index b147291845..7d6f650dc2 100644
--- a/src/Core/Models/Table/EmergencyAccess.cs
+++ b/src/Core/Entities/EmergencyAccess.cs
@@ -3,7 +3,7 @@ using System.ComponentModel.DataAnnotations;
using Bit.Core.Enums;
using Bit.Core.Utilities;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class EmergencyAccess : ITableObject
{
@@ -16,10 +16,10 @@ namespace Bit.Core.Models.Table
public EmergencyAccessType Type { get; set; }
public EmergencyAccessStatusType Status { get; set; }
public int WaitTimeDays { get; set; }
- public DateTime? RecoveryInitiatedDate { get; internal set; }
- public DateTime? LastNotificationDate { get; internal set; }
- public DateTime CreationDate { get; internal set; } = DateTime.UtcNow;
- public DateTime RevisionDate { get; internal set; } = DateTime.UtcNow;
+ public DateTime? RecoveryInitiatedDate { get; set; }
+ public DateTime? LastNotificationDate { get; set; }
+ public DateTime CreationDate { get; set; } = DateTime.UtcNow;
+ public DateTime RevisionDate { get; set; } = DateTime.UtcNow;
public void SetNewId()
{
diff --git a/src/Core/Models/Table/Event.cs b/src/Core/Entities/Event.cs
similarity index 98%
rename from src/Core/Models/Table/Event.cs
rename to src/Core/Entities/Event.cs
index ba02dbfcc6..8c0dc02a44 100644
--- a/src/Core/Models/Table/Event.cs
+++ b/src/Core/Entities/Event.cs
@@ -4,7 +4,7 @@ using Bit.Core.Enums;
using Bit.Core.Models.Data;
using Bit.Core.Utilities;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class Event : ITableObject, IEvent
{
diff --git a/src/Core/Models/Table/Folder.cs b/src/Core/Entities/Folder.cs
similarity index 93%
rename from src/Core/Models/Table/Folder.cs
rename to src/Core/Entities/Folder.cs
index ec20cc3ec0..3fcce1aab3 100644
--- a/src/Core/Models/Table/Folder.cs
+++ b/src/Core/Entities/Folder.cs
@@ -1,7 +1,7 @@
using System;
using Bit.Core.Utilities;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class Folder : ITableObject
{
diff --git a/src/Core/Models/Table/Grant.cs b/src/Core/Entities/Grant.cs
similarity index 95%
rename from src/Core/Models/Table/Grant.cs
rename to src/Core/Entities/Grant.cs
index e8b052d114..ed20b336ff 100644
--- a/src/Core/Models/Table/Grant.cs
+++ b/src/Core/Entities/Grant.cs
@@ -1,7 +1,7 @@
using System;
using System.ComponentModel.DataAnnotations;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class Grant
{
diff --git a/src/Core/Models/Table/Group.cs b/src/Core/Entities/Group.cs
similarity index 93%
rename from src/Core/Models/Table/Group.cs
rename to src/Core/Entities/Group.cs
index d732746886..5f8eb3bad8 100644
--- a/src/Core/Models/Table/Group.cs
+++ b/src/Core/Entities/Group.cs
@@ -1,8 +1,9 @@
using System;
using System.ComponentModel.DataAnnotations;
+using Bit.Core.Models;
using Bit.Core.Utilities;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class Group : ITableObject, IExternal
{
diff --git a/src/Core/Models/Table/GroupUser.cs b/src/Core/Entities/GroupUser.cs
similarity index 72%
rename from src/Core/Models/Table/GroupUser.cs
rename to src/Core/Entities/GroupUser.cs
index 524fedd366..07e3fbde2e 100644
--- a/src/Core/Models/Table/GroupUser.cs
+++ b/src/Core/Entities/GroupUser.cs
@@ -1,7 +1,6 @@
using System;
-using Bit.Core.Utilities;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class GroupUser
{
diff --git a/src/Core/Models/Table/IReferenceable.cs b/src/Core/Entities/IReferenceable.cs
similarity index 85%
rename from src/Core/Models/Table/IReferenceable.cs
rename to src/Core/Entities/IReferenceable.cs
index d207a7a7b9..562f686ef9 100644
--- a/src/Core/Models/Table/IReferenceable.cs
+++ b/src/Core/Entities/IReferenceable.cs
@@ -1,6 +1,6 @@
using System;
-namespace Bit.Core.Models
+namespace Bit.Core.Entities
{
public interface IReferenceable
{
diff --git a/src/Core/Models/Table/IRevisable.cs b/src/Core/Entities/IRevisable.cs
similarity index 81%
rename from src/Core/Models/Table/IRevisable.cs
rename to src/Core/Entities/IRevisable.cs
index 5d2b811d60..ca29146f0d 100644
--- a/src/Core/Models/Table/IRevisable.cs
+++ b/src/Core/Entities/IRevisable.cs
@@ -1,6 +1,6 @@
using System;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public interface IRevisable
{
diff --git a/src/Core/Models/Table/IStorable.cs b/src/Core/Entities/IStorable.cs
similarity index 86%
rename from src/Core/Models/Table/IStorable.cs
rename to src/Core/Entities/IStorable.cs
index a65e1ef018..67c16098fb 100644
--- a/src/Core/Models/Table/IStorable.cs
+++ b/src/Core/Entities/IStorable.cs
@@ -1,4 +1,4 @@
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public interface IStorable
{
diff --git a/src/Core/Models/Table/IStorableSubscriber.cs b/src/Core/Entities/IStorableSubscriber.cs
similarity index 69%
rename from src/Core/Models/Table/IStorableSubscriber.cs
rename to src/Core/Entities/IStorableSubscriber.cs
index 87f4267a35..e37966dea9 100644
--- a/src/Core/Models/Table/IStorableSubscriber.cs
+++ b/src/Core/Entities/IStorableSubscriber.cs
@@ -1,4 +1,4 @@
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public interface IStorableSubscriber : IStorable, ISubscriber
{ }
diff --git a/src/Core/Models/Table/ISubscriber.cs b/src/Core/Entities/ISubscriber.cs
similarity index 88%
rename from src/Core/Models/Table/ISubscriber.cs
rename to src/Core/Entities/ISubscriber.cs
index cd611a3484..232b7978ff 100644
--- a/src/Core/Models/Table/ISubscriber.cs
+++ b/src/Core/Entities/ISubscriber.cs
@@ -1,8 +1,7 @@
using System;
using Bit.Core.Enums;
-using Bit.Core.Services;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public interface ISubscriber
{
diff --git a/src/Core/Models/Table/ITableObject.cs b/src/Core/Entities/ITableObject.cs
similarity index 82%
rename from src/Core/Models/Table/ITableObject.cs
rename to src/Core/Entities/ITableObject.cs
index 8fb6a41946..7c86e4abe1 100644
--- a/src/Core/Models/Table/ITableObject.cs
+++ b/src/Core/Entities/ITableObject.cs
@@ -1,6 +1,6 @@
using System;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public interface ITableObject where T : IEquatable
{
diff --git a/src/Core/Models/Table/Installation.cs b/src/Core/Entities/Installation.cs
similarity index 94%
rename from src/Core/Models/Table/Installation.cs
rename to src/Core/Entities/Installation.cs
index 8d81404383..c0f056e509 100644
--- a/src/Core/Models/Table/Installation.cs
+++ b/src/Core/Entities/Installation.cs
@@ -2,7 +2,7 @@
using System.ComponentModel.DataAnnotations;
using Bit.Core.Utilities;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class Installation : ITableObject
{
diff --git a/src/Core/Models/Table/Organization.cs b/src/Core/Entities/Organization.cs
similarity index 97%
rename from src/Core/Models/Table/Organization.cs
rename to src/Core/Entities/Organization.cs
index fb58702364..7366fb91cc 100644
--- a/src/Core/Models/Table/Organization.cs
+++ b/src/Core/Entities/Organization.cs
@@ -3,10 +3,11 @@ using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using Bit.Core.Enums;
+using Bit.Core.Models;
using Bit.Core.Utilities;
using Newtonsoft.Json;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class Organization : ITableObject, ISubscriber, IStorable, IStorableSubscriber, IRevisable, IReferenceable
{
@@ -65,8 +66,8 @@ namespace Bit.Core.Models.Table
public string PrivateKey { get; set; }
public string TwoFactorProviders { get; set; }
public DateTime? ExpirationDate { get; set; }
- public DateTime CreationDate { get; internal set; } = DateTime.UtcNow;
- public DateTime RevisionDate { get; internal set; } = DateTime.UtcNow;
+ public DateTime CreationDate { get; set; } = DateTime.UtcNow;
+ public DateTime RevisionDate { get; set; } = DateTime.UtcNow;
public int? MaxAutoscaleSeats { get; set; } = null;
public DateTime? OwnersNotifiedOfAutoscaling { get; set; } = null;
diff --git a/src/Core/Models/Table/OrganizationSponsorship.cs b/src/Core/Entities/OrganizationSponsorship.cs
similarity index 96%
rename from src/Core/Models/Table/OrganizationSponsorship.cs
rename to src/Core/Entities/OrganizationSponsorship.cs
index 4acb7eb88a..2dc67fba7a 100644
--- a/src/Core/Models/Table/OrganizationSponsorship.cs
+++ b/src/Core/Entities/OrganizationSponsorship.cs
@@ -3,7 +3,7 @@ using System.ComponentModel.DataAnnotations;
using Bit.Core.Enums;
using Bit.Core.Utilities;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class OrganizationSponsorship : ITableObject
{
diff --git a/src/Core/Models/Table/OrganizationUser.cs b/src/Core/Entities/OrganizationUser.cs
similarity index 95%
rename from src/Core/Models/Table/OrganizationUser.cs
rename to src/Core/Entities/OrganizationUser.cs
index 9019adeb32..4034ca5a70 100644
--- a/src/Core/Models/Table/OrganizationUser.cs
+++ b/src/Core/Entities/OrganizationUser.cs
@@ -1,9 +1,10 @@
using System;
using System.ComponentModel.DataAnnotations;
using Bit.Core.Enums;
+using Bit.Core.Models;
using Bit.Core.Utilities;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class OrganizationUser : ITableObject, IExternal
{
diff --git a/src/Core/Models/Table/Policy.cs b/src/Core/Entities/Policy.cs
similarity index 94%
rename from src/Core/Models/Table/Policy.cs
rename to src/Core/Entities/Policy.cs
index 07c44b6aaf..fbd65c634c 100644
--- a/src/Core/Models/Table/Policy.cs
+++ b/src/Core/Entities/Policy.cs
@@ -2,7 +2,7 @@
using Bit.Core.Enums;
using Bit.Core.Utilities;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class Policy : ITableObject
{
diff --git a/src/Core/Models/Table/Provider/Provider.cs b/src/Core/Entities/Provider/Provider.cs
similarity index 96%
rename from src/Core/Models/Table/Provider/Provider.cs
rename to src/Core/Entities/Provider/Provider.cs
index 439156ca00..a9848bfd50 100644
--- a/src/Core/Models/Table/Provider/Provider.cs
+++ b/src/Core/Entities/Provider/Provider.cs
@@ -2,7 +2,7 @@
using Bit.Core.Enums.Provider;
using Bit.Core.Utilities;
-namespace Bit.Core.Models.Table.Provider
+namespace Bit.Core.Entities.Provider
{
public class Provider : ITableObject
{
diff --git a/src/Core/Models/Table/Provider/ProviderOrganization.cs b/src/Core/Entities/Provider/ProviderOrganization.cs
similarity index 94%
rename from src/Core/Models/Table/Provider/ProviderOrganization.cs
rename to src/Core/Entities/Provider/ProviderOrganization.cs
index 7e0a15afd7..5d93df221b 100644
--- a/src/Core/Models/Table/Provider/ProviderOrganization.cs
+++ b/src/Core/Entities/Provider/ProviderOrganization.cs
@@ -1,7 +1,7 @@
using System;
using Bit.Core.Utilities;
-namespace Bit.Core.Models.Table.Provider
+namespace Bit.Core.Entities.Provider
{
public class ProviderOrganization : ITableObject
{
diff --git a/src/Core/Models/Table/Provider/ProviderUser.cs b/src/Core/Entities/Provider/ProviderUser.cs
similarity index 95%
rename from src/Core/Models/Table/Provider/ProviderUser.cs
rename to src/Core/Entities/Provider/ProviderUser.cs
index 58b95146c6..61002f0006 100644
--- a/src/Core/Models/Table/Provider/ProviderUser.cs
+++ b/src/Core/Entities/Provider/ProviderUser.cs
@@ -2,7 +2,7 @@
using Bit.Core.Enums.Provider;
using Bit.Core.Utilities;
-namespace Bit.Core.Models.Table.Provider
+namespace Bit.Core.Entities.Provider
{
public class ProviderUser : ITableObject
{
diff --git a/src/Core/Models/Table/Role.cs b/src/Core/Entities/Role.cs
similarity index 85%
rename from src/Core/Models/Table/Role.cs
rename to src/Core/Entities/Role.cs
index cfbde2e387..2acdb1c65f 100644
--- a/src/Core/Models/Table/Role.cs
+++ b/src/Core/Entities/Role.cs
@@ -1,4 +1,4 @@
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
///
/// This class is not used. It is implemented to make the Identity provider happy.
diff --git a/src/Core/Models/Table/Send.cs b/src/Core/Entities/Send.cs
similarity index 97%
rename from src/Core/Models/Table/Send.cs
rename to src/Core/Entities/Send.cs
index 36607d965f..c921eb486c 100644
--- a/src/Core/Models/Table/Send.cs
+++ b/src/Core/Entities/Send.cs
@@ -3,7 +3,7 @@ using System.ComponentModel.DataAnnotations;
using Bit.Core.Enums;
using Bit.Core.Utilities;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class Send : ITableObject
{
diff --git a/src/Core/Models/Table/SsoConfig.cs b/src/Core/Entities/SsoConfig.cs
similarity index 96%
rename from src/Core/Models/Table/SsoConfig.cs
rename to src/Core/Entities/SsoConfig.cs
index 4cd1d7155e..4b3bf7d7e8 100644
--- a/src/Core/Models/Table/SsoConfig.cs
+++ b/src/Core/Entities/SsoConfig.cs
@@ -1,7 +1,7 @@
using System;
using Bit.Core.Models.Data;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class SsoConfig : ITableObject
{
diff --git a/src/Core/Models/Table/SsoUser.cs b/src/Core/Entities/SsoUser.cs
similarity index 94%
rename from src/Core/Models/Table/SsoUser.cs
rename to src/Core/Entities/SsoUser.cs
index 6c7cd6257f..f02d027271 100644
--- a/src/Core/Models/Table/SsoUser.cs
+++ b/src/Core/Entities/SsoUser.cs
@@ -1,7 +1,7 @@
using System;
using System.ComponentModel.DataAnnotations;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class SsoUser : ITableObject
{
diff --git a/src/Core/Models/Table/TaxRate.cs b/src/Core/Entities/TaxRate.cs
similarity index 95%
rename from src/Core/Models/Table/TaxRate.cs
rename to src/Core/Entities/TaxRate.cs
index bed82d0dfe..bf53c8cf04 100644
--- a/src/Core/Models/Table/TaxRate.cs
+++ b/src/Core/Entities/TaxRate.cs
@@ -1,6 +1,6 @@
using System.ComponentModel.DataAnnotations;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class TaxRate : ITableObject
{
diff --git a/src/Core/Models/Table/Transaction.cs b/src/Core/Entities/Transaction.cs
similarity index 96%
rename from src/Core/Models/Table/Transaction.cs
rename to src/Core/Entities/Transaction.cs
index 0f5e80e457..68d416c52f 100644
--- a/src/Core/Models/Table/Transaction.cs
+++ b/src/Core/Entities/Transaction.cs
@@ -3,7 +3,7 @@ using System.ComponentModel.DataAnnotations;
using Bit.Core.Enums;
using Bit.Core.Utilities;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class Transaction : ITableObject
{
diff --git a/src/Core/Models/Table/U2f.cs b/src/Core/Entities/U2f.cs
similarity index 95%
rename from src/Core/Models/Table/U2f.cs
rename to src/Core/Entities/U2f.cs
index 5d089dacaa..3e8a187e6b 100644
--- a/src/Core/Models/Table/U2f.cs
+++ b/src/Core/Entities/U2f.cs
@@ -1,7 +1,7 @@
using System;
using System.ComponentModel.DataAnnotations;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class U2f : ITableObject
{
diff --git a/src/Core/Models/Table/User.cs b/src/Core/Entities/User.cs
similarity index 95%
rename from src/Core/Models/Table/User.cs
rename to src/Core/Entities/User.cs
index beb290dec2..f809489091 100644
--- a/src/Core/Models/Table/User.cs
+++ b/src/Core/Entities/User.cs
@@ -2,11 +2,12 @@
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Bit.Core.Enums;
+using Bit.Core.Models;
using Bit.Core.Utilities;
using Microsoft.AspNetCore.Identity;
using Newtonsoft.Json;
-namespace Bit.Core.Models.Table
+namespace Bit.Core.Entities
{
public class User : ITableObject, ISubscriber, IStorable, IStorableSubscriber, IRevisable, ITwoFactorProvidersUser, IReferenceable
{
@@ -33,7 +34,7 @@ namespace Bit.Core.Models.Table
public string TwoFactorRecoveryCode { get; set; }
public string EquivalentDomains { get; set; }
public string ExcludedGlobalEquivalentDomains { get; set; }
- public DateTime AccountRevisionDate { get; internal set; } = DateTime.UtcNow;
+ public DateTime AccountRevisionDate { get; set; } = DateTime.UtcNow;
public string Key { get; set; }
public string PublicKey { get; set; }
public string PrivateKey { get; set; }
@@ -55,8 +56,8 @@ namespace Bit.Core.Models.Table
public string ApiKey { get; set; }
public KdfType Kdf { get; set; } = KdfType.PBKDF2_SHA256;
public int KdfIterations { get; set; } = 5000;
- public DateTime CreationDate { get; internal set; } = DateTime.UtcNow;
- public DateTime RevisionDate { get; internal set; } = DateTime.UtcNow;
+ public DateTime CreationDate { get; set; } = DateTime.UtcNow;
+ public DateTime RevisionDate { get; set; } = DateTime.UtcNow;
public bool ForcePasswordReset { get; set; }
public bool UsesKeyConnector { get; set; }
diff --git a/src/Core/Identity/AuthenticatorTokenProvider.cs b/src/Core/Identity/AuthenticatorTokenProvider.cs
index bfb6e117b7..cd5e75d950 100644
--- a/src/Core/Identity/AuthenticatorTokenProvider.cs
+++ b/src/Core/Identity/AuthenticatorTokenProvider.cs
@@ -1,7 +1,7 @@
using System;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
using Bit.Core.Services;
using Microsoft.AspNetCore.Identity;
using Microsoft.Extensions.DependencyInjection;
diff --git a/src/Core/Identity/DuoWebTokenProvider.cs b/src/Core/Identity/DuoWebTokenProvider.cs
index 2ff6cfe1c2..6f2a1d849c 100644
--- a/src/Core/Identity/DuoWebTokenProvider.cs
+++ b/src/Core/Identity/DuoWebTokenProvider.cs
@@ -1,8 +1,8 @@
using System;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models;
-using Bit.Core.Models.Table;
using Bit.Core.Services;
using Bit.Core.Settings;
using Bit.Core.Utilities.Duo;
diff --git a/src/Core/Identity/EmailTokenProvider.cs b/src/Core/Identity/EmailTokenProvider.cs
index 47d19e36fd..c0a2270b32 100644
--- a/src/Core/Identity/EmailTokenProvider.cs
+++ b/src/Core/Identity/EmailTokenProvider.cs
@@ -1,8 +1,8 @@
using System;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models;
-using Bit.Core.Models.Table;
using Bit.Core.Services;
using Microsoft.AspNetCore.Identity;
using Microsoft.Extensions.DependencyInjection;
diff --git a/src/Core/Identity/IOrganizationTwoFactorTokenProvider.cs b/src/Core/Identity/IOrganizationTwoFactorTokenProvider.cs
index cda8c2ede3..57e366bc42 100644
--- a/src/Core/Identity/IOrganizationTwoFactorTokenProvider.cs
+++ b/src/Core/Identity/IOrganizationTwoFactorTokenProvider.cs
@@ -1,5 +1,5 @@
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Identity
{
diff --git a/src/Core/Identity/OrganizationDuoWebTokenProvider.cs b/src/Core/Identity/OrganizationDuoWebTokenProvider.cs
index 537fd62a54..2c18a959f0 100644
--- a/src/Core/Identity/OrganizationDuoWebTokenProvider.cs
+++ b/src/Core/Identity/OrganizationDuoWebTokenProvider.cs
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
using Bit.Core.Utilities.Duo;
diff --git a/src/Core/Identity/RoleStore.cs b/src/Core/Identity/RoleStore.cs
index 28b0b58251..62ae46203d 100644
--- a/src/Core/Identity/RoleStore.cs
+++ b/src/Core/Identity/RoleStore.cs
@@ -1,7 +1,7 @@
using System;
using System.Threading;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
using Microsoft.AspNetCore.Identity;
namespace Bit.Core.Identity
diff --git a/src/Core/Identity/TwoFactorRememberTokenProvider.cs b/src/Core/Identity/TwoFactorRememberTokenProvider.cs
index 4be07ab92a..2902280ff2 100644
--- a/src/Core/Identity/TwoFactorRememberTokenProvider.cs
+++ b/src/Core/Identity/TwoFactorRememberTokenProvider.cs
@@ -1,4 +1,4 @@
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
using Microsoft.AspNetCore.DataProtection;
using Microsoft.AspNetCore.Identity;
using Microsoft.Extensions.Logging;
diff --git a/src/Core/Identity/U2fTokenProvider.cs b/src/Core/Identity/U2fTokenProvider.cs
index 7fc97455e3..613ab7a433 100644
--- a/src/Core/Identity/U2fTokenProvider.cs
+++ b/src/Core/Identity/U2fTokenProvider.cs
@@ -2,9 +2,9 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Settings;
diff --git a/src/Core/Identity/UserStore.cs b/src/Core/Identity/UserStore.cs
index 45ddeec45a..7a11ef95e6 100644
--- a/src/Core/Identity/UserStore.cs
+++ b/src/Core/Identity/UserStore.cs
@@ -2,7 +2,7 @@
using System.Threading;
using System.Threading.Tasks;
using Bit.Core.Context;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Settings;
diff --git a/src/Core/Identity/WebAuthnTokenProvider.cs b/src/Core/Identity/WebAuthnTokenProvider.cs
index 18e44a0f70..15b463a5c5 100644
--- a/src/Core/Identity/WebAuthnTokenProvider.cs
+++ b/src/Core/Identity/WebAuthnTokenProvider.cs
@@ -2,9 +2,9 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models;
-using Bit.Core.Models.Table;
using Bit.Core.Services;
using Bit.Core.Settings;
using Bit.Core.Utilities;
diff --git a/src/Core/Identity/YubicoOtpTokenProvider.cs b/src/Core/Identity/YubicoOtpTokenProvider.cs
index 009f9f9423..f0ab573c49 100644
--- a/src/Core/Identity/YubicoOtpTokenProvider.cs
+++ b/src/Core/Identity/YubicoOtpTokenProvider.cs
@@ -1,8 +1,8 @@
using System;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
using Bit.Core.Services;
using Bit.Core.Settings;
using Microsoft.AspNetCore.Identity;
diff --git a/src/Core/IdentityServer/BaseRequestValidator.cs b/src/Core/IdentityServer/BaseRequestValidator.cs
index a48301958d..e47df16b49 100644
--- a/src/Core/IdentityServer/BaseRequestValidator.cs
+++ b/src/Core/IdentityServer/BaseRequestValidator.cs
@@ -7,12 +7,12 @@ using System.Security.Claims;
using System.Text.Json;
using System.Threading.Tasks;
using Bit.Core.Context;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Identity;
using Bit.Core.Models;
using Bit.Core.Models.Api;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Settings;
diff --git a/src/Core/IdentityServer/CustomTokenRequestValidator.cs b/src/Core/IdentityServer/CustomTokenRequestValidator.cs
index ae7a74ff30..2fa6c71d9c 100644
--- a/src/Core/IdentityServer/CustomTokenRequestValidator.cs
+++ b/src/Core/IdentityServer/CustomTokenRequestValidator.cs
@@ -5,9 +5,9 @@ using System.Security.Claims;
using System.Text.Json;
using System.Threading.Tasks;
using Bit.Core.Context;
+using Bit.Core.Entities;
using Bit.Core.Identity;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Settings;
diff --git a/src/Core/IdentityServer/PersistedGrantStore.cs b/src/Core/IdentityServer/PersistedGrantStore.cs
index 8365a995e5..67a38f7179 100644
--- a/src/Core/IdentityServer/PersistedGrantStore.cs
+++ b/src/Core/IdentityServer/PersistedGrantStore.cs
@@ -4,6 +4,7 @@ using System.Threading.Tasks;
using Bit.Core.Repositories;
using IdentityServer4.Models;
using IdentityServer4.Stores;
+using Grant = Bit.Core.Entities.Grant;
namespace Bit.Core.IdentityServer
{
@@ -53,9 +54,9 @@ namespace Bit.Core.IdentityServer
await _grantRepository.SaveAsync(grant);
}
- private Models.Table.Grant ToGrant(PersistedGrant pGrant)
+ private Grant ToGrant(PersistedGrant pGrant)
{
- return new Models.Table.Grant
+ return new Grant
{
Key = pGrant.Key,
Type = pGrant.Type,
@@ -70,7 +71,7 @@ namespace Bit.Core.IdentityServer
};
}
- private PersistedGrant ToPersistedGrant(Models.Table.Grant grant)
+ private PersistedGrant ToPersistedGrant(Grant grant)
{
return new PersistedGrant
{
diff --git a/src/Core/IdentityServer/ResourceOwnerPasswordValidator.cs b/src/Core/IdentityServer/ResourceOwnerPasswordValidator.cs
index c28d353e1a..7b30227a5a 100644
--- a/src/Core/IdentityServer/ResourceOwnerPasswordValidator.cs
+++ b/src/Core/IdentityServer/ResourceOwnerPasswordValidator.cs
@@ -2,8 +2,8 @@
using System.Security.Claims;
using System.Threading.Tasks;
using Bit.Core.Context;
+using Bit.Core.Entities;
using Bit.Core.Identity;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Settings;
diff --git a/src/Core/Models/Business/AppleReceiptStatus.cs b/src/Core/Models/Business/AppleReceiptStatus.cs
index 80a049d1c3..df8be4a9b2 100644
--- a/src/Core/Models/Business/AppleReceiptStatus.cs
+++ b/src/Core/Models/Business/AppleReceiptStatus.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
using Bit.Core.Utilities;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
diff --git a/src/Core/Models/Business/BillingInfo.cs b/src/Core/Models/Business/BillingInfo.cs
index fbe0de4755..5266558ee7 100644
--- a/src/Core/Models/Business/BillingInfo.cs
+++ b/src/Core/Models/Business/BillingInfo.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
using Stripe;
namespace Bit.Core.Models.Business
diff --git a/src/Core/Models/Business/ImportedGroup.cs b/src/Core/Models/Business/ImportedGroup.cs
index f85e032841..38bf1ff816 100644
--- a/src/Core/Models/Business/ImportedGroup.cs
+++ b/src/Core/Models/Business/ImportedGroup.cs
@@ -1,5 +1,5 @@
using System.Collections.Generic;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Models.Business
{
diff --git a/src/Core/Models/Business/OrganizationLicense.cs b/src/Core/Models/Business/OrganizationLicense.cs
index 3f09ce9d10..30449d119c 100644
--- a/src/Core/Models/Business/OrganizationLicense.cs
+++ b/src/Core/Models/Business/OrganizationLicense.cs
@@ -4,8 +4,8 @@ using System.Reflection;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Text;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
using Bit.Core.Services;
using Bit.Core.Settings;
using Newtonsoft.Json;
diff --git a/src/Core/Models/Business/OrganizationSignup.cs b/src/Core/Models/Business/OrganizationSignup.cs
index 1e09fc3232..a257410fd5 100644
--- a/src/Core/Models/Business/OrganizationSignup.cs
+++ b/src/Core/Models/Business/OrganizationSignup.cs
@@ -1,5 +1,5 @@
-using Bit.Core.Enums;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
+using Bit.Core.Enums;
namespace Bit.Core.Models.Business
{
diff --git a/src/Core/Models/Business/ReferenceEvent.cs b/src/Core/Models/Business/ReferenceEvent.cs
index cd87441ac6..f0fe81e7f8 100644
--- a/src/Core/Models/Business/ReferenceEvent.cs
+++ b/src/Core/Models/Business/ReferenceEvent.cs
@@ -1,4 +1,5 @@
using System;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
diff --git a/src/Core/Models/Business/SubscriptionCreateOptions.cs b/src/Core/Models/Business/SubscriptionCreateOptions.cs
index fd964dc257..63bbdfbb75 100644
--- a/src/Core/Models/Business/SubscriptionCreateOptions.cs
+++ b/src/Core/Models/Business/SubscriptionCreateOptions.cs
@@ -1,5 +1,5 @@
using System.Collections.Generic;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
using Stripe;
namespace Bit.Core.Models.Business
diff --git a/src/Core/Models/Business/SubscriptionUpdate.cs b/src/Core/Models/Business/SubscriptionUpdate.cs
index aa131b0fe1..24315c723b 100644
--- a/src/Core/Models/Business/SubscriptionUpdate.cs
+++ b/src/Core/Models/Business/SubscriptionUpdate.cs
@@ -1,6 +1,6 @@
using System.Collections.Generic;
using System.Linq;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
using Stripe;
namespace Bit.Core.Models.Business
diff --git a/src/Core/Models/Business/Tokenables/EmergencyAccessInviteTokenable.cs b/src/Core/Models/Business/Tokenables/EmergencyAccessInviteTokenable.cs
index ed79d3b431..b8cf0be04f 100644
--- a/src/Core/Models/Business/Tokenables/EmergencyAccessInviteTokenable.cs
+++ b/src/Core/Models/Business/Tokenables/EmergencyAccessInviteTokenable.cs
@@ -1,6 +1,6 @@
using System;
using System.Text.Json.Serialization;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Models.Business.Tokenables
{
diff --git a/src/Core/Models/Business/Tokenables/HCaptchaTokenable.cs b/src/Core/Models/Business/Tokenables/HCaptchaTokenable.cs
index 804705b1c4..4a7322ed08 100644
--- a/src/Core/Models/Business/Tokenables/HCaptchaTokenable.cs
+++ b/src/Core/Models/Business/Tokenables/HCaptchaTokenable.cs
@@ -1,6 +1,6 @@
using System;
using System.Text.Json.Serialization;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
using Bit.Core.Tokens;
namespace Bit.Core.Models.Business.Tokenables
diff --git a/src/Core/Models/Business/UserLicense.cs b/src/Core/Models/Business/UserLicense.cs
index 64ec47b0d2..86c6859604 100644
--- a/src/Core/Models/Business/UserLicense.cs
+++ b/src/Core/Models/Business/UserLicense.cs
@@ -4,7 +4,7 @@ using System.Reflection;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Text;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
using Bit.Core.Services;
using Newtonsoft.Json;
diff --git a/src/Core/Models/Data/AttachmentResponseData.cs b/src/Core/Models/Data/AttachmentResponseData.cs
index a5eb2dc5cd..1a5c0de433 100644
--- a/src/Core/Models/Data/AttachmentResponseData.cs
+++ b/src/Core/Models/Data/AttachmentResponseData.cs
@@ -1,4 +1,4 @@
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Models.Data
{
diff --git a/src/Core/Models/Data/CipherOrganizationDetails.cs b/src/Core/Models/Data/CipherOrganizationDetails.cs
index e1a32a5329..522ebdd2fe 100644
--- a/src/Core/Models/Data/CipherOrganizationDetails.cs
+++ b/src/Core/Models/Data/CipherOrganizationDetails.cs
@@ -1,4 +1,4 @@
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Core.Models.Data
{
diff --git a/src/Core/Models/Data/CollectionDetails.cs b/src/Core/Models/Data/CollectionDetails.cs
index 62f3c46fd0..110acc3e59 100644
--- a/src/Core/Models/Data/CollectionDetails.cs
+++ b/src/Core/Models/Data/CollectionDetails.cs
@@ -1,4 +1,4 @@
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Models.Data
{
diff --git a/src/Core/Models/Data/EmergencyAccessDetails.cs b/src/Core/Models/Data/EmergencyAccessDetails.cs
index bd25189554..54e5069a0e 100644
--- a/src/Core/Models/Data/EmergencyAccessDetails.cs
+++ b/src/Core/Models/Data/EmergencyAccessDetails.cs
@@ -1,4 +1,4 @@
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Models.Data
{
diff --git a/src/Core/Models/Data/EmergencyAccessNotify.cs b/src/Core/Models/Data/EmergencyAccessNotify.cs
index 6bfb13795b..b71e7102aa 100644
--- a/src/Core/Models/Data/EmergencyAccessNotify.cs
+++ b/src/Core/Models/Data/EmergencyAccessNotify.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
using Newtonsoft.Json;
namespace Bit.Core.Models.Data
diff --git a/src/Core/Models/Data/EmergencyAccessViewData.cs b/src/Core/Models/Data/EmergencyAccessViewData.cs
index ee65cc60e4..b5bcf0a958 100644
--- a/src/Core/Models/Data/EmergencyAccessViewData.cs
+++ b/src/Core/Models/Data/EmergencyAccessViewData.cs
@@ -1,5 +1,5 @@
using System.Collections.Generic;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
using Core.Models.Data;
namespace Bit.Core.Models.Data
diff --git a/src/Core/Models/Data/GroupWithCollections.cs b/src/Core/Models/Data/GroupWithCollections.cs
index dedd4f1e6d..958f70feb1 100644
--- a/src/Core/Models/Data/GroupWithCollections.cs
+++ b/src/Core/Models/Data/GroupWithCollections.cs
@@ -1,5 +1,5 @@
using System.Data;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Models.Data
{
diff --git a/src/Core/Models/Data/OrganizationAbility.cs b/src/Core/Models/Data/OrganizationAbility.cs
index e02ab6a18c..d7423fdc70 100644
--- a/src/Core/Models/Data/OrganizationAbility.cs
+++ b/src/Core/Models/Data/OrganizationAbility.cs
@@ -1,5 +1,5 @@
using System;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Models.Data
{
diff --git a/src/Core/Models/Data/OrganizationUserResetPasswordDetails.cs b/src/Core/Models/Data/OrganizationUserResetPasswordDetails.cs
index e8edf54360..ea17ad8bc7 100644
--- a/src/Core/Models/Data/OrganizationUserResetPasswordDetails.cs
+++ b/src/Core/Models/Data/OrganizationUserResetPasswordDetails.cs
@@ -1,6 +1,6 @@
using System;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
namespace Bit.Core.Models.Data
{
diff --git a/src/Core/Models/Data/OrganizationUserWithCollections.cs b/src/Core/Models/Data/OrganizationUserWithCollections.cs
index 7070e009c6..b655953e87 100644
--- a/src/Core/Models/Data/OrganizationUserWithCollections.cs
+++ b/src/Core/Models/Data/OrganizationUserWithCollections.cs
@@ -1,5 +1,5 @@
using System.Data;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Models.Data
{
diff --git a/src/Core/Models/Data/Provider/ProviderAbility.cs b/src/Core/Models/Data/Provider/ProviderAbility.cs
index f4f1e98029..bb21cb5631 100644
--- a/src/Core/Models/Data/Provider/ProviderAbility.cs
+++ b/src/Core/Models/Data/Provider/ProviderAbility.cs
@@ -1,6 +1,5 @@
using System;
-using Bit.Core.Models.Table;
-using Bit.Core.Models.Table.Provider;
+using Bit.Core.Entities.Provider;
namespace Bit.Core.Models.Data
{
diff --git a/src/Core/Models/EntityFramework/Device.cs b/src/Core/Models/EntityFramework/Device.cs
deleted file mode 100644
index b6032c4168..0000000000
--- a/src/Core/Models/EntityFramework/Device.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System.Collections.Generic;
-using System.Text.Json;
-using AutoMapper;
-
-namespace Bit.Core.Models.EntityFramework
-{
- public class Device : Table.Device
- {
- public virtual User User { get; set; }
- }
-
- public class DeviceMapperProfile : Profile
- {
- public DeviceMapperProfile()
- {
- CreateMap().ReverseMap();
- }
- }
-}
diff --git a/src/Core/Models/EntityFramework/EmergencyAccess.cs b/src/Core/Models/EntityFramework/EmergencyAccess.cs
deleted file mode 100644
index 3211a8dd23..0000000000
--- a/src/Core/Models/EntityFramework/EmergencyAccess.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System.Collections.Generic;
-using System.Text.Json;
-using AutoMapper;
-
-namespace Bit.Core.Models.EntityFramework
-{
- public class EmergencyAccess : Table.EmergencyAccess
- {
- public virtual User Grantee { get; set; }
- public virtual User Grantor { get; set; }
- }
-
- public class EmergencyAccessMapperProfile : Profile
- {
- public EmergencyAccessMapperProfile()
- {
- CreateMap().ReverseMap();
- }
- }
-}
diff --git a/src/Core/Models/EntityFramework/Event.cs b/src/Core/Models/EntityFramework/Event.cs
deleted file mode 100644
index f7300d313c..0000000000
--- a/src/Core/Models/EntityFramework/Event.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using AutoMapper;
-
-namespace Bit.Core.Models.EntityFramework
-{
- public class Event : Table.Event
- {
- }
-
- public class EventMapperProfile : Profile
- {
- public EventMapperProfile()
- {
- CreateMap().ReverseMap();
- }
- }
-}
diff --git a/src/Core/Models/EntityFramework/Folder.cs b/src/Core/Models/EntityFramework/Folder.cs
deleted file mode 100644
index 8e8da68746..0000000000
--- a/src/Core/Models/EntityFramework/Folder.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System.Collections.Generic;
-using System.Text.Json;
-using AutoMapper;
-
-namespace Bit.Core.Models.EntityFramework
-{
- public class Folder : Table.Folder
- {
- public virtual User User { get; set; }
- }
-
- public class FolderMapperProfile : Profile
- {
- public FolderMapperProfile()
- {
- CreateMap().ReverseMap();
- }
- }
-}
diff --git a/src/Core/Models/EntityFramework/Grant.cs b/src/Core/Models/EntityFramework/Grant.cs
deleted file mode 100644
index 7c349b26bd..0000000000
--- a/src/Core/Models/EntityFramework/Grant.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using System.Collections.Generic;
-using System.Text.Json;
-using AutoMapper;
-
-namespace Bit.Core.Models.EntityFramework
-{
- public class Grant : Table.Grant
- {
- }
-
- public class GrantMapperProfile : Profile
- {
- public GrantMapperProfile()
- {
- CreateMap().ReverseMap();
- }
- }
-}
diff --git a/src/Core/Models/EntityFramework/Installation.cs b/src/Core/Models/EntityFramework/Installation.cs
deleted file mode 100644
index b50f045c23..0000000000
--- a/src/Core/Models/EntityFramework/Installation.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using System.Collections.Generic;
-using System.Text.Json;
-using AutoMapper;
-
-namespace Bit.Core.Models.EntityFramework
-{
- public class Installation : Table.Installation
- {
- }
-
- public class InstallationMapperProfile : Profile
- {
- public InstallationMapperProfile()
- {
- CreateMap().ReverseMap();
- }
- }
-}
diff --git a/src/Core/Models/EntityFramework/Policy.cs b/src/Core/Models/EntityFramework/Policy.cs
deleted file mode 100644
index d9f2f1db3e..0000000000
--- a/src/Core/Models/EntityFramework/Policy.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System.Collections.Generic;
-using System.Text.Json;
-using AutoMapper;
-
-namespace Bit.Core.Models.EntityFramework
-{
- public class Policy : Table.Policy
- {
- public virtual Organization Organization { get; set; }
- }
-
- public class PolicyMapperProfile : Profile
- {
- public PolicyMapperProfile()
- {
- CreateMap().ReverseMap();
- }
- }
-}
diff --git a/src/Core/Models/EntityFramework/Provider/Provider.cs b/src/Core/Models/EntityFramework/Provider/Provider.cs
deleted file mode 100644
index 8f96192e29..0000000000
--- a/src/Core/Models/EntityFramework/Provider/Provider.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using AutoMapper;
-
-namespace Bit.Core.Models.EntityFramework.Provider
-{
- public class Provider : Table.Provider.Provider
- {
- }
-
- public class ProviderMapperProfile : Profile
- {
- public ProviderMapperProfile()
- {
- CreateMap().ReverseMap();
- }
- }
-}
diff --git a/src/Core/Models/EntityFramework/Role.cs b/src/Core/Models/EntityFramework/Role.cs
deleted file mode 100644
index b55a1ddc73..0000000000
--- a/src/Core/Models/EntityFramework/Role.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using System.Collections.Generic;
-using System.Text.Json;
-using AutoMapper;
-
-namespace Bit.Core.Models.EntityFramework
-{
- public class Role : Table.Role
- {
- }
-
- public class RoleMapperProfile : Profile
- {
- public RoleMapperProfile()
- {
- CreateMap().ReverseMap();
- }
- }
-}
diff --git a/src/Core/Models/EntityFramework/SsoConfig.cs b/src/Core/Models/EntityFramework/SsoConfig.cs
deleted file mode 100644
index be86fa522b..0000000000
--- a/src/Core/Models/EntityFramework/SsoConfig.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System.Collections.Generic;
-using System.Text.Json;
-using AutoMapper;
-
-namespace Bit.Core.Models.EntityFramework
-{
- public class SsoConfig : Table.SsoConfig
- {
- public virtual Organization Organization { get; set; }
- }
-
- public class SsoConfigMapperProfile : Profile
- {
- public SsoConfigMapperProfile()
- {
- CreateMap().ReverseMap();
- }
- }
-}
diff --git a/src/Core/Models/EntityFramework/TaxRate.cs b/src/Core/Models/EntityFramework/TaxRate.cs
deleted file mode 100644
index bf3605d215..0000000000
--- a/src/Core/Models/EntityFramework/TaxRate.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using System.Collections.Generic;
-using System.Text.Json;
-using AutoMapper;
-
-namespace Bit.Core.Models.EntityFramework
-{
- public class TaxRate : Table.TaxRate
- {
- }
-
- public class TaxRateMapperProfile : Profile
- {
- public TaxRateMapperProfile()
- {
- CreateMap().ReverseMap();
- }
- }
-}
diff --git a/src/Core/Models/EntityFramework/U2f.cs b/src/Core/Models/EntityFramework/U2f.cs
deleted file mode 100644
index 9fee7f35c1..0000000000
--- a/src/Core/Models/EntityFramework/U2f.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System.Collections.Generic;
-using System.Text.Json;
-using AutoMapper;
-
-namespace Bit.Core.Models.EntityFramework
-{
- public class U2f : Table.U2f
- {
- public virtual User User { get; set; }
- }
-
- public class U2fMapperProfile : Profile
- {
- public U2fMapperProfile()
- {
- CreateMap().ReverseMap();
- }
- }
-}
diff --git a/src/Core/Repositories/EntityFramework/InstallationRepository.cs b/src/Core/Repositories/EntityFramework/InstallationRepository.cs
deleted file mode 100644
index d42ad32891..0000000000
--- a/src/Core/Repositories/EntityFramework/InstallationRepository.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Threading.Tasks;
-using AutoMapper;
-using Microsoft.EntityFrameworkCore;
-using Microsoft.Extensions.DependencyInjection;
-using DataModel = Bit.Core.Models.Data;
-using EfModel = Bit.Core.Models.EntityFramework;
-using TableModel = Bit.Core.Models.Table;
-
-namespace Bit.Core.Repositories.EntityFramework
-{
- public class InstallationRepository : Repository, IInstallationRepository
- {
- public InstallationRepository(IServiceScopeFactory serviceScopeFactory, IMapper mapper)
- : base(serviceScopeFactory, mapper, (DatabaseContext context) => context.Installations)
- { }
- }
-}
diff --git a/src/Core/Repositories/ICipherRepository.cs b/src/Core/Repositories/ICipherRepository.cs
index e1b423dad4..51a0bab408 100644
--- a/src/Core/Repositories/ICipherRepository.cs
+++ b/src/Core/Repositories/ICipherRepository.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Core.Models.Data;
namespace Bit.Core.Repositories
diff --git a/src/Core/Repositories/ICollectionCipherRepository.cs b/src/Core/Repositories/ICollectionCipherRepository.cs
index f518603d3c..e9e686a978 100644
--- a/src/Core/Repositories/ICollectionCipherRepository.cs
+++ b/src/Core/Repositories/ICollectionCipherRepository.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/ICollectionRepository.cs b/src/Core/Repositories/ICollectionRepository.cs
index f0cd4cd4b7..0a0eaf9734 100644
--- a/src/Core/Repositories/ICollectionRepository.cs
+++ b/src/Core/Repositories/ICollectionRepository.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/IDeviceRepository.cs b/src/Core/Repositories/IDeviceRepository.cs
index b1718c63bc..94ded9f40e 100644
--- a/src/Core/Repositories/IDeviceRepository.cs
+++ b/src/Core/Repositories/IDeviceRepository.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/IEmergencyAccessRepository.cs b/src/Core/Repositories/IEmergencyAccessRepository.cs
index e07444db12..364e5cddd2 100644
--- a/src/Core/Repositories/IEmergencyAccessRepository.cs
+++ b/src/Core/Repositories/IEmergencyAccessRepository.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/IEventRepository.cs b/src/Core/Repositories/IEventRepository.cs
index aedd05cd0b..341355ee6b 100644
--- a/src/Core/Repositories/IEventRepository.cs
+++ b/src/Core/Repositories/IEventRepository.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/IFolderRepository.cs b/src/Core/Repositories/IFolderRepository.cs
index 2760d85567..ef39ab4157 100644
--- a/src/Core/Repositories/IFolderRepository.cs
+++ b/src/Core/Repositories/IFolderRepository.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/IGrantRepository.cs b/src/Core/Repositories/IGrantRepository.cs
index 5f4f3d723a..a182020cf8 100644
--- a/src/Core/Repositories/IGrantRepository.cs
+++ b/src/Core/Repositories/IGrantRepository.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/IGroupRepository.cs b/src/Core/Repositories/IGroupRepository.cs
index 2e11b4cc4e..b03f8960e0 100644
--- a/src/Core/Repositories/IGroupRepository.cs
+++ b/src/Core/Repositories/IGroupRepository.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/IInstallationRepository.cs b/src/Core/Repositories/IInstallationRepository.cs
index 7c424521b1..2ff2f01cc1 100644
--- a/src/Core/Repositories/IInstallationRepository.cs
+++ b/src/Core/Repositories/IInstallationRepository.cs
@@ -1,5 +1,5 @@
using System;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/IOrganizationRepository.cs b/src/Core/Repositories/IOrganizationRepository.cs
index bebfc51a74..3535b39f4f 100644
--- a/src/Core/Repositories/IOrganizationRepository.cs
+++ b/src/Core/Repositories/IOrganizationRepository.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/IOrganizationSponsorshipRepository.cs b/src/Core/Repositories/IOrganizationSponsorshipRepository.cs
index 3c9f57d26f..f6b17a6e39 100644
--- a/src/Core/Repositories/IOrganizationSponsorshipRepository.cs
+++ b/src/Core/Repositories/IOrganizationSponsorshipRepository.cs
@@ -2,7 +2,7 @@
using System.Collections;
using System.Collections.Generic;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/IOrganizationUserRepository.cs b/src/Core/Repositories/IOrganizationUserRepository.cs
index e4085480e1..12dbc4e968 100644
--- a/src/Core/Repositories/IOrganizationUserRepository.cs
+++ b/src/Core/Repositories/IOrganizationUserRepository.cs
@@ -1,9 +1,9 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/IPolicyRepository.cs b/src/Core/Repositories/IPolicyRepository.cs
index 54ceed6055..9466bc3db2 100644
--- a/src/Core/Repositories/IPolicyRepository.cs
+++ b/src/Core/Repositories/IPolicyRepository.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/IProviderOrganizationRepository.cs b/src/Core/Repositories/IProviderOrganizationRepository.cs
index 66f1b231d0..e42eb098be 100644
--- a/src/Core/Repositories/IProviderOrganizationRepository.cs
+++ b/src/Core/Repositories/IProviderOrganizationRepository.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities.Provider;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table.Provider;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/IProviderRepository.cs b/src/Core/Repositories/IProviderRepository.cs
index 169cfd7ec0..df226aec01 100644
--- a/src/Core/Repositories/IProviderRepository.cs
+++ b/src/Core/Repositories/IProviderRepository.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities.Provider;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table.Provider;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/IProviderUserRepository.cs b/src/Core/Repositories/IProviderUserRepository.cs
index 754c2433e8..7a32188c7f 100644
--- a/src/Core/Repositories/IProviderUserRepository.cs
+++ b/src/Core/Repositories/IProviderUserRepository.cs
@@ -1,9 +1,9 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities.Provider;
using Bit.Core.Enums.Provider;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table.Provider;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/IRepository.cs b/src/Core/Repositories/IRepository.cs
index 6cb1a7951f..5bf38159ff 100644
--- a/src/Core/Repositories/IRepository.cs
+++ b/src/Core/Repositories/IRepository.cs
@@ -1,6 +1,6 @@
using System;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/ISendRepository.cs b/src/Core/Repositories/ISendRepository.cs
index a7179ea214..ea12a9e96d 100644
--- a/src/Core/Repositories/ISendRepository.cs
+++ b/src/Core/Repositories/ISendRepository.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/ISsoConfigRepository.cs b/src/Core/Repositories/ISsoConfigRepository.cs
index 763cb2f0be..4d3c5090d9 100644
--- a/src/Core/Repositories/ISsoConfigRepository.cs
+++ b/src/Core/Repositories/ISsoConfigRepository.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/ISsoUserRepository.cs b/src/Core/Repositories/ISsoUserRepository.cs
index 7d466ed00e..a5e5dd305c 100644
--- a/src/Core/Repositories/ISsoUserRepository.cs
+++ b/src/Core/Repositories/ISsoUserRepository.cs
@@ -1,6 +1,6 @@
using System;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/ITaxRateRepository.cs b/src/Core/Repositories/ITaxRateRepository.cs
index 7916a31379..51e86f340a 100644
--- a/src/Core/Repositories/ITaxRateRepository.cs
+++ b/src/Core/Repositories/ITaxRateRepository.cs
@@ -1,6 +1,6 @@
using System.Collections.Generic;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/ITransactionRepository.cs b/src/Core/Repositories/ITransactionRepository.cs
index e47c68b8c2..8bd0f952e6 100644
--- a/src/Core/Repositories/ITransactionRepository.cs
+++ b/src/Core/Repositories/ITransactionRepository.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/IU2fRepository.cs b/src/Core/Repositories/IU2fRepository.cs
index d655f17617..7246b112c2 100644
--- a/src/Core/Repositories/IU2fRepository.cs
+++ b/src/Core/Repositories/IU2fRepository.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/IUserRepository.cs b/src/Core/Repositories/IUserRepository.cs
index 3e655622ca..0c047f8577 100644
--- a/src/Core/Repositories/IUserRepository.cs
+++ b/src/Core/Repositories/IUserRepository.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Core.Repositories
{
diff --git a/src/Core/Repositories/SqlServer/DateTimeHandler.cs b/src/Core/Repositories/SqlServer/DateTimeHandler.cs
deleted file mode 100644
index 36eabca61a..0000000000
--- a/src/Core/Repositories/SqlServer/DateTimeHandler.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System;
-using System.Data;
-using Dapper;
-
-public class DateTimeHandler : SqlMapper.TypeHandler
-{
- public override void SetValue(IDbDataParameter parameter, DateTime value)
- {
- parameter.Value = value;
- }
-
- public override DateTime Parse(object value)
- {
- return DateTime.SpecifyKind((DateTime)value, DateTimeKind.Utc);
- }
-}
diff --git a/src/Core/Repositories/TableStorage/EventRepository.cs b/src/Core/Repositories/TableStorage/EventRepository.cs
index a2df9d9b16..c2cd4b4a09 100644
--- a/src/Core/Repositories/TableStorage/EventRepository.cs
+++ b/src/Core/Repositories/TableStorage/EventRepository.cs
@@ -2,8 +2,8 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
using Bit.Core.Utilities;
using Microsoft.Azure.Cosmos.Table;
diff --git a/src/Core/Services/IApplicationCacheService.cs b/src/Core/Services/IApplicationCacheService.cs
index a00185e124..72e913e2ff 100644
--- a/src/Core/Services/IApplicationCacheService.cs
+++ b/src/Core/Services/IApplicationCacheService.cs
@@ -1,9 +1,9 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
+using Bit.Core.Entities.Provider;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
-using Bit.Core.Models.Table.Provider;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/IAttachmentStorageService.cs b/src/Core/Services/IAttachmentStorageService.cs
index 66775e6019..31b74f2f1f 100644
--- a/src/Core/Services/IAttachmentStorageService.cs
+++ b/src/Core/Services/IAttachmentStorageService.cs
@@ -1,9 +1,9 @@
using System;
using System.IO;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/ICaptchaValidationService.cs b/src/Core/Services/ICaptchaValidationService.cs
index 08a18b0c81..e4e80edb99 100644
--- a/src/Core/Services/ICaptchaValidationService.cs
+++ b/src/Core/Services/ICaptchaValidationService.cs
@@ -1,6 +1,6 @@
using System.Threading.Tasks;
using Bit.Core.Context;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/ICipherService.cs b/src/Core/Services/ICipherService.cs
index e0b69a63bd..3684aab6bb 100644
--- a/src/Core/Services/ICipherService.cs
+++ b/src/Core/Services/ICipherService.cs
@@ -2,8 +2,8 @@
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Core.Models.Data;
namespace Bit.Core.Services
diff --git a/src/Core/Services/ICollectionService.cs b/src/Core/Services/ICollectionService.cs
index e5f22287db..9bcc4b8597 100644
--- a/src/Core/Services/ICollectionService.cs
+++ b/src/Core/Services/ICollectionService.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/IDeviceService.cs b/src/Core/Services/IDeviceService.cs
index ea5a1b7df0..0fbd2f0458 100644
--- a/src/Core/Services/IDeviceService.cs
+++ b/src/Core/Services/IDeviceService.cs
@@ -1,5 +1,5 @@
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/IEmergencyAccessService.cs b/src/Core/Services/IEmergencyAccessService.cs
index 6d66ed4c8a..fe37f42777 100644
--- a/src/Core/Services/IEmergencyAccessService.cs
+++ b/src/Core/Services/IEmergencyAccessService.cs
@@ -1,9 +1,9 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/IEventService.cs b/src/Core/Services/IEventService.cs
index 7408765170..444df18c78 100644
--- a/src/Core/Services/IEventService.cs
+++ b/src/Core/Services/IEventService.cs
@@ -1,9 +1,9 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
+using Bit.Core.Entities.Provider;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
-using Bit.Core.Models.Table.Provider;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/IGroupService.cs b/src/Core/Services/IGroupService.cs
index 3dbe953d12..6fc6cea70d 100644
--- a/src/Core/Services/IGroupService.cs
+++ b/src/Core/Services/IGroupService.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/ILicensingService.cs b/src/Core/Services/ILicensingService.cs
index 84e7978f0e..15d6a2fe9d 100644
--- a/src/Core/Services/ILicensingService.cs
+++ b/src/Core/Services/ILicensingService.cs
@@ -1,6 +1,6 @@
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Business;
-using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/IMailService.cs b/src/Core/Services/IMailService.cs
index 3615da1de8..09e71dae58 100644
--- a/src/Core/Services/IMailService.cs
+++ b/src/Core/Services/IMailService.cs
@@ -1,10 +1,10 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
+using Bit.Core.Entities.Provider;
using Bit.Core.Models.Business;
using Bit.Core.Models.Mail;
-using Bit.Core.Models.Table;
-using Bit.Core.Models.Table.Provider;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/IOrganizationService.cs b/src/Core/Services/IOrganizationService.cs
index a6f35537f3..e41b1d011b 100644
--- a/src/Core/Services/IOrganizationService.cs
+++ b/src/Core/Services/IOrganizationService.cs
@@ -1,10 +1,10 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Business;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/IOrganizationSponsorshipService.cs b/src/Core/Services/IOrganizationSponsorshipService.cs
index a72e4e592c..81be9cb4af 100644
--- a/src/Core/Services/IOrganizationSponsorshipService.cs
+++ b/src/Core/Services/IOrganizationSponsorshipService.cs
@@ -1,7 +1,7 @@
using System;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/IPaymentService.cs b/src/Core/Services/IPaymentService.cs
index 36b4889f65..3d0982cdb2 100644
--- a/src/Core/Services/IPaymentService.cs
+++ b/src/Core/Services/IPaymentService.cs
@@ -1,9 +1,9 @@
using System;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Business;
using Bit.Core.Models.StaticStore;
-using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/IPolicyService.cs b/src/Core/Services/IPolicyService.cs
index 1b95911063..838a1beb7c 100644
--- a/src/Core/Services/IPolicyService.cs
+++ b/src/Core/Services/IPolicyService.cs
@@ -1,6 +1,6 @@
using System;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/IProviderService.cs b/src/Core/Services/IProviderService.cs
index 7214e6cf86..c0078c2b08 100644
--- a/src/Core/Services/IProviderService.cs
+++ b/src/Core/Services/IProviderService.cs
@@ -1,10 +1,10 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
+using Bit.Core.Entities.Provider;
using Bit.Core.Models.Business;
using Bit.Core.Models.Business.Provider;
-using Bit.Core.Models.Table;
-using Bit.Core.Models.Table.Provider;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/IPushNotificationService.cs b/src/Core/Services/IPushNotificationService.cs
index 1bfd160188..c64e696ee3 100644
--- a/src/Core/Services/IPushNotificationService.cs
+++ b/src/Core/Services/IPushNotificationService.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/ISendService.cs b/src/Core/Services/ISendService.cs
index ae4162a7b7..5c15ae05b5 100644
--- a/src/Core/Services/ISendService.cs
+++ b/src/Core/Services/ISendService.cs
@@ -1,8 +1,8 @@
using System;
using System.IO;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/ISendStorageService.cs b/src/Core/Services/ISendStorageService.cs
index 03b6016759..cd1ade0943 100644
--- a/src/Core/Services/ISendStorageService.cs
+++ b/src/Core/Services/ISendStorageService.cs
@@ -1,8 +1,8 @@
using System;
using System.IO;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/ISsoConfigService.cs b/src/Core/Services/ISsoConfigService.cs
index 3c1d06d755..d9a7eb20e8 100644
--- a/src/Core/Services/ISsoConfigService.cs
+++ b/src/Core/Services/ISsoConfigService.cs
@@ -1,5 +1,5 @@
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/IUserService.cs b/src/Core/Services/IUserService.cs
index 52b0bfc927..c4b562411a 100644
--- a/src/Core/Services/IUserService.cs
+++ b/src/Core/Services/IUserService.cs
@@ -2,10 +2,10 @@
using System.Collections.Generic;
using System.Security.Claims;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models;
using Bit.Core.Models.Business;
-using Bit.Core.Models.Table;
using Fido2NetLib;
using Microsoft.AspNetCore.Identity;
diff --git a/src/Core/Services/Implementations/AzureAttachmentStorageService.cs b/src/Core/Services/Implementations/AzureAttachmentStorageService.cs
index 82b4e5729f..53999d4889 100644
--- a/src/Core/Services/Implementations/AzureAttachmentStorageService.cs
+++ b/src/Core/Services/Implementations/AzureAttachmentStorageService.cs
@@ -5,9 +5,9 @@ using System.Threading.Tasks;
using Azure.Storage.Blobs;
using Azure.Storage.Blobs.Models;
using Azure.Storage.Sas;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
namespace Bit.Core.Services
diff --git a/src/Core/Services/Implementations/AzureQueuePushNotificationService.cs b/src/Core/Services/Implementations/AzureQueuePushNotificationService.cs
index 989136b73c..619ebe03b2 100644
--- a/src/Core/Services/Implementations/AzureQueuePushNotificationService.cs
+++ b/src/Core/Services/Implementations/AzureQueuePushNotificationService.cs
@@ -3,9 +3,9 @@ using System.Collections.Generic;
using System.Threading.Tasks;
using Azure.Storage.Queues;
using Bit.Core.Context;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
using Microsoft.AspNetCore.Http;
using Newtonsoft.Json;
diff --git a/src/Core/Services/Implementations/AzureQueueService.cs b/src/Core/Services/Implementations/AzureQueueService.cs
index 844f8d700d..2c3b1234dc 100644
--- a/src/Core/Services/Implementations/AzureQueueService.cs
+++ b/src/Core/Services/Implementations/AzureQueueService.cs
@@ -4,7 +4,6 @@ using System.Text;
using System.Threading.Tasks;
using Azure.Storage.Queues;
using Bit.Core.Utilities;
-using Microsoft.EntityFrameworkCore.Internal;
using Newtonsoft.Json;
namespace Bit.Core.Services
diff --git a/src/Core/Services/Implementations/AzureSendFileStorageService.cs b/src/Core/Services/Implementations/AzureSendFileStorageService.cs
index dab2510707..934c3ac209 100644
--- a/src/Core/Services/Implementations/AzureSendFileStorageService.cs
+++ b/src/Core/Services/Implementations/AzureSendFileStorageService.cs
@@ -2,12 +2,11 @@
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
-using Azure;
using Azure.Storage.Blobs;
using Azure.Storage.Blobs.Models;
using Azure.Storage.Sas;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
namespace Bit.Core.Services
diff --git a/src/Core/Services/Implementations/CipherService.cs b/src/Core/Services/Implementations/CipherService.cs
index f1a5a8e38d..9482a1585a 100644
--- a/src/Core/Services/Implementations/CipherService.cs
+++ b/src/Core/Services/Implementations/CipherService.cs
@@ -3,11 +3,11 @@ using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Exceptions;
using Bit.Core.Models.Business;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Settings;
using Bit.Core.Utilities;
diff --git a/src/Core/Services/Implementations/CollectionService.cs b/src/Core/Services/Implementations/CollectionService.cs
index d0105908a4..af6fd33852 100644
--- a/src/Core/Services/Implementations/CollectionService.cs
+++ b/src/Core/Services/Implementations/CollectionService.cs
@@ -1,11 +1,11 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Exceptions;
using Bit.Core.Models.Business;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
namespace Bit.Core.Services
diff --git a/src/Core/Services/Implementations/DeviceService.cs b/src/Core/Services/Implementations/DeviceService.cs
index 4bf177b4e0..951abfac30 100644
--- a/src/Core/Services/Implementations/DeviceService.cs
+++ b/src/Core/Services/Implementations/DeviceService.cs
@@ -1,6 +1,6 @@
using System;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
using Bit.Core.Repositories;
namespace Bit.Core.Services
diff --git a/src/Core/Services/Implementations/EmergencyAccessService.cs b/src/Core/Services/Implementations/EmergencyAccessService.cs
index 2bd1fc9efd..2b9aa2ff14 100644
--- a/src/Core/Services/Implementations/EmergencyAccessService.cs
+++ b/src/Core/Services/Implementations/EmergencyAccessService.cs
@@ -2,12 +2,12 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Exceptions;
using Bit.Core.Models;
using Bit.Core.Models.Business.Tokenables;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Settings;
using Bit.Core.Tokens;
diff --git a/src/Core/Services/Implementations/EventService.cs b/src/Core/Services/Implementations/EventService.cs
index 1a1d016ec9..50ff0b692a 100644
--- a/src/Core/Services/Implementations/EventService.cs
+++ b/src/Core/Services/Implementations/EventService.cs
@@ -3,10 +3,10 @@ using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Bit.Core.Context;
+using Bit.Core.Entities;
+using Bit.Core.Entities.Provider;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
-using Bit.Core.Models.Table.Provider;
using Bit.Core.Repositories;
using Bit.Core.Settings;
diff --git a/src/Core/Services/Implementations/GroupService.cs b/src/Core/Services/Implementations/GroupService.cs
index 96f242fa1e..c7b5bcb618 100644
--- a/src/Core/Services/Implementations/GroupService.cs
+++ b/src/Core/Services/Implementations/GroupService.cs
@@ -1,11 +1,11 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Exceptions;
using Bit.Core.Models.Business;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
namespace Bit.Core.Services
diff --git a/src/Core/Services/Implementations/HCaptchaValidationService.cs b/src/Core/Services/Implementations/HCaptchaValidationService.cs
index a2f92b4df1..b93238cfd1 100644
--- a/src/Core/Services/Implementations/HCaptchaValidationService.cs
+++ b/src/Core/Services/Implementations/HCaptchaValidationService.cs
@@ -3,8 +3,8 @@ using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
using Bit.Core.Context;
+using Bit.Core.Entities;
using Bit.Core.Models.Business.Tokenables;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
using Bit.Core.Tokens;
using Microsoft.Extensions.Logging;
diff --git a/src/Core/Services/Implementations/HandlebarsMailService.cs b/src/Core/Services/Implementations/HandlebarsMailService.cs
index c8e5dd121a..f953d70706 100644
--- a/src/Core/Services/Implementations/HandlebarsMailService.cs
+++ b/src/Core/Services/Implementations/HandlebarsMailService.cs
@@ -5,12 +5,12 @@ using System.Linq;
using System.Net;
using System.Reflection;
using System.Threading.Tasks;
+using Bit.Core.Entities;
+using Bit.Core.Entities.Provider;
using Bit.Core.Models.Business;
using Bit.Core.Models.Mail;
using Bit.Core.Models.Mail.FamiliesForEnterprise;
using Bit.Core.Models.Mail.Provider;
-using Bit.Core.Models.Table;
-using Bit.Core.Models.Table.Provider;
using Bit.Core.Settings;
using Bit.Core.Utilities;
using HandlebarsDotNet;
diff --git a/src/Core/Services/Implementations/InMemoryApplicationCacheService.cs b/src/Core/Services/Implementations/InMemoryApplicationCacheService.cs
index fc9ba2aec9..fc9320e851 100644
--- a/src/Core/Services/Implementations/InMemoryApplicationCacheService.cs
+++ b/src/Core/Services/Implementations/InMemoryApplicationCacheService.cs
@@ -2,9 +2,9 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
+using Bit.Core.Entities.Provider;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
-using Bit.Core.Models.Table.Provider;
using Bit.Core.Repositories;
namespace Bit.Core.Services
diff --git a/src/Core/Services/Implementations/InMemoryServiceBusApplicationCacheService.cs b/src/Core/Services/Implementations/InMemoryServiceBusApplicationCacheService.cs
index f08cccae34..fd0d9b339b 100644
--- a/src/Core/Services/Implementations/InMemoryServiceBusApplicationCacheService.cs
+++ b/src/Core/Services/Implementations/InMemoryServiceBusApplicationCacheService.cs
@@ -1,7 +1,7 @@
using System;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Settings;
using Bit.Core.Utilities;
diff --git a/src/Core/Services/Implementations/LicensingService.cs b/src/Core/Services/Implementations/LicensingService.cs
index ad7ec0988c..1b2c70415a 100644
--- a/src/Core/Services/Implementations/LicensingService.cs
+++ b/src/Core/Services/Implementations/LicensingService.cs
@@ -5,8 +5,8 @@ using System.Linq;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Business;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Settings;
using Bit.Core.Utilities;
diff --git a/src/Core/Services/Implementations/LocalAttachmentStorageService.cs b/src/Core/Services/Implementations/LocalAttachmentStorageService.cs
index e226284f20..72f55280b2 100644
--- a/src/Core/Services/Implementations/LocalAttachmentStorageService.cs
+++ b/src/Core/Services/Implementations/LocalAttachmentStorageService.cs
@@ -1,9 +1,9 @@
using System;
using System.IO;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
namespace Bit.Core.Services
diff --git a/src/Core/Services/Implementations/LocalSendStorageService.cs b/src/Core/Services/Implementations/LocalSendStorageService.cs
index c9d65f67cb..5ab7fca35a 100644
--- a/src/Core/Services/Implementations/LocalSendStorageService.cs
+++ b/src/Core/Services/Implementations/LocalSendStorageService.cs
@@ -2,8 +2,8 @@
using System.IO;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
namespace Bit.Core.Services
diff --git a/src/Core/Services/Implementations/MultiServicePushNotificationService.cs b/src/Core/Services/Implementations/MultiServicePushNotificationService.cs
index d550927323..8320e516c4 100644
--- a/src/Core/Services/Implementations/MultiServicePushNotificationService.cs
+++ b/src/Core/Services/Implementations/MultiServicePushNotificationService.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Settings;
using Bit.Core.Utilities;
diff --git a/src/Core/Services/Implementations/NotificationHubPushNotificationService.cs b/src/Core/Services/Implementations/NotificationHubPushNotificationService.cs
index 2504125c6b..95c8673d6a 100644
--- a/src/Core/Services/Implementations/NotificationHubPushNotificationService.cs
+++ b/src/Core/Services/Implementations/NotificationHubPushNotificationService.cs
@@ -3,10 +3,10 @@ using System.Collections.Generic;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Bit.Core.Context;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Settings;
using Microsoft.AspNetCore.Http;
diff --git a/src/Core/Services/Implementations/NotificationsApiPushNotificationService.cs b/src/Core/Services/Implementations/NotificationsApiPushNotificationService.cs
index f0c10e11a6..7cf41cbadd 100644
--- a/src/Core/Services/Implementations/NotificationsApiPushNotificationService.cs
+++ b/src/Core/Services/Implementations/NotificationsApiPushNotificationService.cs
@@ -3,9 +3,9 @@ using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
using Bit.Core.Context;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
diff --git a/src/Core/Services/Implementations/OrganizationService.cs b/src/Core/Services/Implementations/OrganizationService.cs
index 058a60424a..28a026e75d 100644
--- a/src/Core/Services/Implementations/OrganizationService.cs
+++ b/src/Core/Services/Implementations/OrganizationService.cs
@@ -5,11 +5,11 @@ using System.Linq;
using System.Text.Json;
using System.Threading.Tasks;
using Bit.Core.Context;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Exceptions;
using Bit.Core.Models.Business;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Settings;
using Bit.Core.Utilities;
diff --git a/src/Core/Services/Implementations/OrganizationSponsorshipService.cs b/src/Core/Services/Implementations/OrganizationSponsorshipService.cs
index eb704d77a8..19101f0725 100644
--- a/src/Core/Services/Implementations/OrganizationSponsorshipService.cs
+++ b/src/Core/Services/Implementations/OrganizationSponsorshipService.cs
@@ -1,8 +1,8 @@
using System;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Exceptions;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Utilities;
using Microsoft.AspNetCore.DataProtection;
diff --git a/src/Core/Services/Implementations/PolicyService.cs b/src/Core/Services/Implementations/PolicyService.cs
index 19831a991b..14e107e808 100644
--- a/src/Core/Services/Implementations/PolicyService.cs
+++ b/src/Core/Services/Implementations/PolicyService.cs
@@ -2,9 +2,9 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Exceptions;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
namespace Bit.Core.Services
diff --git a/src/Core/Services/Implementations/RelayPushNotificationService.cs b/src/Core/Services/Implementations/RelayPushNotificationService.cs
index dcdd921adf..6b930a60fd 100644
--- a/src/Core/Services/Implementations/RelayPushNotificationService.cs
+++ b/src/Core/Services/Implementations/RelayPushNotificationService.cs
@@ -3,10 +3,10 @@ using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
using Bit.Core.Context;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Settings;
using Microsoft.AspNetCore.Http;
diff --git a/src/Core/Services/Implementations/SendService.cs b/src/Core/Services/Implementations/SendService.cs
index 327c73259e..36cf82ad6d 100644
--- a/src/Core/Services/Implementations/SendService.cs
+++ b/src/Core/Services/Implementations/SendService.cs
@@ -3,11 +3,11 @@ using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Bit.Core.Context;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Exceptions;
using Bit.Core.Models.Business;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Settings;
using Bit.Core.Utilities;
diff --git a/src/Core/Services/Implementations/SsoConfigService.cs b/src/Core/Services/Implementations/SsoConfigService.cs
index dd6f9b3058..51425c4e9a 100644
--- a/src/Core/Services/Implementations/SsoConfigService.cs
+++ b/src/Core/Services/Implementations/SsoConfigService.cs
@@ -1,9 +1,9 @@
using System;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Exceptions;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
namespace Bit.Core.Services
diff --git a/src/Core/Services/Implementations/StripePaymentService.cs b/src/Core/Services/Implementations/StripePaymentService.cs
index 1a5d91dc94..96e4500e3c 100644
--- a/src/Core/Services/Implementations/StripePaymentService.cs
+++ b/src/Core/Services/Implementations/StripePaymentService.cs
@@ -3,14 +3,14 @@ using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Bit.Billing.Models;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Exceptions;
using Bit.Core.Models.Business;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Microsoft.Extensions.Logging;
using StaticStore = Bit.Core.Models.StaticStore;
-using TaxRate = Bit.Core.Models.Table.TaxRate;
+using TaxRate = Bit.Core.Entities.TaxRate;
namespace Bit.Core.Services
{
@@ -466,7 +466,7 @@ namespace Bit.Core.Services
&& !string.IsNullOrWhiteSpace(taxInfo?.BillingAddressPostalCode))
{
var taxRates = await _taxRateRepository.GetByLocationAsync(
- new Bit.Core.Models.Table.TaxRate()
+ new TaxRate()
{
Country = taxInfo.BillingAddressCountry,
PostalCode = taxInfo.BillingAddressPostalCode
@@ -742,7 +742,7 @@ namespace Bit.Core.Services
&& !string.IsNullOrWhiteSpace(customer?.Address?.PostalCode))
{
var taxRates = await _taxRateRepository.GetByLocationAsync(
- new Bit.Core.Models.Table.TaxRate()
+ new TaxRate()
{
Country = customer.Address.Country,
PostalCode = customer.Address.PostalCode
diff --git a/src/Core/Services/Implementations/UserService.cs b/src/Core/Services/Implementations/UserService.cs
index 293166b282..ffeb436e9e 100644
--- a/src/Core/Services/Implementations/UserService.cs
+++ b/src/Core/Services/Implementations/UserService.cs
@@ -5,11 +5,11 @@ using System.Linq;
using System.Security.Claims;
using System.Threading.Tasks;
using Bit.Core.Context;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Exceptions;
using Bit.Core.Models;
using Bit.Core.Models.Business;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Settings;
using Bit.Core.Utilities;
diff --git a/src/Core/Services/NoopImplementations/NoopAttachmentStorageService.cs b/src/Core/Services/NoopImplementations/NoopAttachmentStorageService.cs
index e47f45f968..f0dba5744a 100644
--- a/src/Core/Services/NoopImplementations/NoopAttachmentStorageService.cs
+++ b/src/Core/Services/NoopImplementations/NoopAttachmentStorageService.cs
@@ -1,9 +1,9 @@
using System;
using System.IO;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/NoopImplementations/NoopCaptchaValidationService.cs b/src/Core/Services/NoopImplementations/NoopCaptchaValidationService.cs
index 6e16000daf..6173e76bae 100644
--- a/src/Core/Services/NoopImplementations/NoopCaptchaValidationService.cs
+++ b/src/Core/Services/NoopImplementations/NoopCaptchaValidationService.cs
@@ -1,6 +1,6 @@
using System.Threading.Tasks;
using Bit.Core.Context;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/NoopImplementations/NoopEventService.cs b/src/Core/Services/NoopImplementations/NoopEventService.cs
index 466f2be98a..c423347853 100644
--- a/src/Core/Services/NoopImplementations/NoopEventService.cs
+++ b/src/Core/Services/NoopImplementations/NoopEventService.cs
@@ -1,9 +1,9 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
+using Bit.Core.Entities.Provider;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
-using Bit.Core.Models.Table.Provider;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/NoopImplementations/NoopLicensingService.cs b/src/Core/Services/NoopImplementations/NoopLicensingService.cs
index 52f8d1edd0..84c2599e95 100644
--- a/src/Core/Services/NoopImplementations/NoopLicensingService.cs
+++ b/src/Core/Services/NoopImplementations/NoopLicensingService.cs
@@ -1,7 +1,7 @@
using System;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Business;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Hosting;
diff --git a/src/Core/Services/NoopImplementations/NoopMailService.cs b/src/Core/Services/NoopImplementations/NoopMailService.cs
index 55ff400b51..3fb02a5a95 100644
--- a/src/Core/Services/NoopImplementations/NoopMailService.cs
+++ b/src/Core/Services/NoopImplementations/NoopMailService.cs
@@ -1,10 +1,10 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
+using Bit.Core.Entities.Provider;
using Bit.Core.Models.Business;
using Bit.Core.Models.Mail;
-using Bit.Core.Models.Table;
-using Bit.Core.Models.Table.Provider;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/NoopImplementations/NoopProviderService.cs b/src/Core/Services/NoopImplementations/NoopProviderService.cs
index 5d29c93bfb..d52f0b6408 100644
--- a/src/Core/Services/NoopImplementations/NoopProviderService.cs
+++ b/src/Core/Services/NoopImplementations/NoopProviderService.cs
@@ -1,10 +1,10 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
+using Bit.Core.Entities.Provider;
using Bit.Core.Models.Business;
using Bit.Core.Models.Business.Provider;
-using Bit.Core.Models.Table;
-using Bit.Core.Models.Table.Provider;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/NoopImplementations/NoopPushNotificationService.cs b/src/Core/Services/NoopImplementations/NoopPushNotificationService.cs
index d49239d338..d21a3dd629 100644
--- a/src/Core/Services/NoopImplementations/NoopPushNotificationService.cs
+++ b/src/Core/Services/NoopImplementations/NoopPushNotificationService.cs
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
diff --git a/src/Core/Services/NoopImplementations/NoopSendFileStorageService.cs b/src/Core/Services/NoopImplementations/NoopSendFileStorageService.cs
index bc4b631424..acbae1fb52 100644
--- a/src/Core/Services/NoopImplementations/NoopSendFileStorageService.cs
+++ b/src/Core/Services/NoopImplementations/NoopSendFileStorageService.cs
@@ -1,8 +1,8 @@
using System;
using System.IO;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
namespace Bit.Core.Services
{
diff --git a/src/Core/Utilities/BillingHelpers.cs b/src/Core/Utilities/BillingHelpers.cs
index 25505b7ff1..662415a044 100644
--- a/src/Core/Utilities/BillingHelpers.cs
+++ b/src/Core/Utilities/BillingHelpers.cs
@@ -1,7 +1,7 @@
using System;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Exceptions;
-using Bit.Core.Models.Table;
using Bit.Core.Services;
namespace Bit.Core.Utilities
diff --git a/src/Core/Utilities/CoreHelpers.cs b/src/Core/Utilities/CoreHelpers.cs
index 92e237d74b..315fecf113 100644
--- a/src/Core/Utilities/CoreHelpers.cs
+++ b/src/Core/Utilities/CoreHelpers.cs
@@ -1,6 +1,5 @@
using System;
using System.Collections.Generic;
-using System.Data;
using System.Globalization;
using System.IO;
using System.Linq;
@@ -17,12 +16,10 @@ using Azure.Storage.Blobs;
using Azure.Storage.Blobs.Models;
using Azure.Storage.Queues.Models;
using Bit.Core.Context;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Enums.Provider;
-using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
using Bit.Core.Settings;
-using Dapper;
using IdentityModel;
using Microsoft.AspNetCore.DataProtection;
using MimeKit;
@@ -103,104 +100,6 @@ namespace Bit.Core.Utilities
}
}
- public static DataTable ToGuidIdArrayTVP(this IEnumerable ids)
- {
- return ids.ToArrayTVP("GuidId");
- }
-
- public static DataTable ToArrayTVP(this IEnumerable values, string columnName)
- {
- var table = new DataTable();
- table.SetTypeName($"[dbo].[{columnName}Array]");
- table.Columns.Add(columnName, typeof(T));
-
- if (values != null)
- {
- foreach (var value in values)
- {
- table.Rows.Add(value);
- }
- }
-
- return table;
- }
-
- public static DataTable ToArrayTVP(this IEnumerable values)
- {
- var table = new DataTable();
- table.SetTypeName("[dbo].[SelectionReadOnlyArray]");
-
- var idColumn = new DataColumn("Id", typeof(Guid));
- table.Columns.Add(idColumn);
- var readOnlyColumn = new DataColumn("ReadOnly", typeof(bool));
- table.Columns.Add(readOnlyColumn);
- var hidePasswordsColumn = new DataColumn("HidePasswords", typeof(bool));
- table.Columns.Add(hidePasswordsColumn);
-
- if (values != null)
- {
- foreach (var value in values)
- {
- var row = table.NewRow();
- row[idColumn] = value.Id;
- row[readOnlyColumn] = value.ReadOnly;
- row[hidePasswordsColumn] = value.HidePasswords;
- table.Rows.Add(row);
- }
- }
-
- return table;
- }
-
- public static DataTable ToTvp(this IEnumerable orgUsers)
- {
- var table = new DataTable();
- table.SetTypeName("[dbo].[OrganizationUserType]");
-
- var columnData = new List<(string name, Type type, Func getter)>
- {
- (nameof(OrganizationUser.Id), typeof(Guid), ou => ou.Id),
- (nameof(OrganizationUser.OrganizationId), typeof(Guid), ou => ou.OrganizationId),
- (nameof(OrganizationUser.UserId), typeof(Guid), ou => ou.UserId),
- (nameof(OrganizationUser.Email), typeof(string), ou => ou.Email),
- (nameof(OrganizationUser.Key), typeof(string), ou => ou.Key),
- (nameof(OrganizationUser.Status), typeof(byte), ou => ou.Status),
- (nameof(OrganizationUser.Type), typeof(byte), ou => ou.Type),
- (nameof(OrganizationUser.AccessAll), typeof(bool), ou => ou.AccessAll),
- (nameof(OrganizationUser.ExternalId), typeof(string), ou => ou.ExternalId),
- (nameof(OrganizationUser.CreationDate), typeof(DateTime), ou => ou.CreationDate),
- (nameof(OrganizationUser.RevisionDate), typeof(DateTime), ou => ou.RevisionDate),
- (nameof(OrganizationUser.Permissions), typeof(string), ou => ou.Permissions),
- (nameof(OrganizationUser.ResetPasswordKey), typeof(string), ou => ou.ResetPasswordKey),
- };
-
- foreach (var (name, type, getter) in columnData)
- {
- var column = new DataColumn(name, type);
- table.Columns.Add(column);
- }
-
- foreach (var orgUser in orgUsers ?? new OrganizationUser[] { })
- {
- var row = table.NewRow();
- foreach (var (name, type, getter) in columnData)
- {
- var val = getter(orgUser);
- if (val == null)
- {
- row[name] = DBNull.Value;
- }
- else
- {
- row[name] = val;
- }
- }
- table.Rows.Add(row);
- }
-
- return table;
- }
-
public static string CleanCertificateThumbprint(string thumbprint)
{
// Clean possible garbage characters from thumbprint copy/paste
diff --git a/src/Events/Controllers/CollectController.cs b/src/Events/Controllers/CollectController.cs
index bed3030ec9..73cda06953 100644
--- a/src/Events/Controllers/CollectController.cs
+++ b/src/Events/Controllers/CollectController.cs
@@ -3,8 +3,8 @@ using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Bit.Core.Context;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Core.Services;
using Bit.Core.Utilities;
diff --git a/src/Events/Events.csproj b/src/Events/Events.csproj
index cb65ff97c8..5b6491d2e9 100644
--- a/src/Events/Events.csproj
+++ b/src/Events/Events.csproj
@@ -6,6 +6,7 @@
+
diff --git a/src/Events/Startup.cs b/src/Events/Startup.cs
index 94d2d83d45..6cf103df69 100644
--- a/src/Events/Startup.cs
+++ b/src/Events/Startup.cs
@@ -3,6 +3,7 @@ using Bit.Core.Context;
using Bit.Core.Services;
using Bit.Core.Settings;
using Bit.Core.Utilities;
+using Bit.SharedWeb.Utilities;
using IdentityModel;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
diff --git a/src/EventsProcessor/EventsProcessor.csproj b/src/EventsProcessor/EventsProcessor.csproj
index 3e8876489f..050f96bac6 100644
--- a/src/EventsProcessor/EventsProcessor.csproj
+++ b/src/EventsProcessor/EventsProcessor.csproj
@@ -5,6 +5,7 @@
+
diff --git a/src/EventsProcessor/Startup.cs b/src/EventsProcessor/Startup.cs
index fd437b96fb..32feb9de7e 100644
--- a/src/EventsProcessor/Startup.cs
+++ b/src/EventsProcessor/Startup.cs
@@ -1,6 +1,7 @@
using System.Globalization;
using Bit.Core.Settings;
using Bit.Core.Utilities;
+using Bit.SharedWeb.Utilities;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
diff --git a/src/Icons/Icons.csproj b/src/Icons/Icons.csproj
index 31fa723a04..4e7f8a8497 100644
--- a/src/Icons/Icons.csproj
+++ b/src/Icons/Icons.csproj
@@ -14,6 +14,7 @@
+
diff --git a/src/Icons/Startup.cs b/src/Icons/Startup.cs
index 1d53d34c26..5e5bb27820 100644
--- a/src/Icons/Startup.cs
+++ b/src/Icons/Startup.cs
@@ -3,6 +3,7 @@ using System.Globalization;
using Bit.Core.Settings;
using Bit.Core.Utilities;
using Bit.Icons.Services;
+using Bit.SharedWeb.Utilities;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
diff --git a/src/Identity/Controllers/AccountController.cs b/src/Identity/Controllers/AccountController.cs
index b01ca2c07d..f0b7bcec36 100644
--- a/src/Identity/Controllers/AccountController.cs
+++ b/src/Identity/Controllers/AccountController.cs
@@ -4,8 +4,8 @@ using System.Linq;
using System.Net.Http;
using System.Security.Claims;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Api;
-using Bit.Core.Models.Table;
using Bit.Core.Repositories;
using Bit.Identity.Models;
using IdentityModel;
diff --git a/src/Identity/Identity.csproj b/src/Identity/Identity.csproj
index 483452f51d..63dc3c347a 100644
--- a/src/Identity/Identity.csproj
+++ b/src/Identity/Identity.csproj
@@ -6,6 +6,7 @@
+
diff --git a/src/Identity/Startup.cs b/src/Identity/Startup.cs
index 10761df298..7584bf99f3 100644
--- a/src/Identity/Startup.cs
+++ b/src/Identity/Startup.cs
@@ -8,6 +8,7 @@ using Bit.Core.Context;
using Bit.Core.Settings;
using Bit.Core.Utilities;
using Bit.Identity.Utilities;
+using Bit.SharedWeb.Utilities;
using IdentityServer4.Extensions;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
diff --git a/src/Identity/Utilities/ServiceCollectionExtensions.cs b/src/Identity/Utilities/ServiceCollectionExtensions.cs
index 0746bd6998..ec85347810 100644
--- a/src/Identity/Utilities/ServiceCollectionExtensions.cs
+++ b/src/Identity/Utilities/ServiceCollectionExtensions.cs
@@ -2,6 +2,7 @@
using Bit.Core.IdentityServer;
using Bit.Core.Settings;
using Bit.Core.Utilities;
+using Bit.SharedWeb.Utilities;
using IdentityServer4.ResponseHandling;
using IdentityServer4.Services;
using IdentityServer4.Stores;
diff --git a/src/Infrastructure.Dapper/DapperHelpers.cs b/src/Infrastructure.Dapper/DapperHelpers.cs
new file mode 100644
index 0000000000..8316375f19
--- /dev/null
+++ b/src/Infrastructure.Dapper/DapperHelpers.cs
@@ -0,0 +1,110 @@
+using System;
+using System.Collections.Generic;
+using System.Data;
+using Bit.Core.Entities;
+using Bit.Core.Models.Data;
+using Dapper;
+
+namespace Bit.Infrastructure.Dapper
+{
+ public static class DapperHelpers
+ {
+ public static DataTable ToGuidIdArrayTVP(this IEnumerable ids)
+ {
+ return ids.ToArrayTVP("GuidId");
+ }
+
+ public static DataTable ToArrayTVP(this IEnumerable values, string columnName)
+ {
+ var table = new DataTable();
+ table.SetTypeName($"[dbo].[{columnName}Array]");
+ table.Columns.Add(columnName, typeof(T));
+
+ if (values != null)
+ {
+ foreach (var value in values)
+ {
+ table.Rows.Add(value);
+ }
+ }
+
+ return table;
+ }
+
+ public static DataTable ToArrayTVP(this IEnumerable values)
+ {
+ var table = new DataTable();
+ table.SetTypeName("[dbo].[SelectionReadOnlyArray]");
+
+ var idColumn = new DataColumn("Id", typeof(Guid));
+ table.Columns.Add(idColumn);
+ var readOnlyColumn = new DataColumn("ReadOnly", typeof(bool));
+ table.Columns.Add(readOnlyColumn);
+ var hidePasswordsColumn = new DataColumn("HidePasswords", typeof(bool));
+ table.Columns.Add(hidePasswordsColumn);
+
+ if (values != null)
+ {
+ foreach (var value in values)
+ {
+ var row = table.NewRow();
+ row[idColumn] = value.Id;
+ row[readOnlyColumn] = value.ReadOnly;
+ row[hidePasswordsColumn] = value.HidePasswords;
+ table.Rows.Add(row);
+ }
+ }
+
+ return table;
+ }
+
+ public static DataTable ToTvp(this IEnumerable orgUsers)
+ {
+ var table = new DataTable();
+ table.SetTypeName("[dbo].[OrganizationUserType]");
+
+ var columnData = new List<(string name, Type type, Func getter)>
+ {
+ (nameof(OrganizationUser.Id), typeof(Guid), ou => ou.Id),
+ (nameof(OrganizationUser.OrganizationId), typeof(Guid), ou => ou.OrganizationId),
+ (nameof(OrganizationUser.UserId), typeof(Guid), ou => ou.UserId),
+ (nameof(OrganizationUser.Email), typeof(string), ou => ou.Email),
+ (nameof(OrganizationUser.Key), typeof(string), ou => ou.Key),
+ (nameof(OrganizationUser.Status), typeof(byte), ou => ou.Status),
+ (nameof(OrganizationUser.Type), typeof(byte), ou => ou.Type),
+ (nameof(OrganizationUser.AccessAll), typeof(bool), ou => ou.AccessAll),
+ (nameof(OrganizationUser.ExternalId), typeof(string), ou => ou.ExternalId),
+ (nameof(OrganizationUser.CreationDate), typeof(DateTime), ou => ou.CreationDate),
+ (nameof(OrganizationUser.RevisionDate), typeof(DateTime), ou => ou.RevisionDate),
+ (nameof(OrganizationUser.Permissions), typeof(string), ou => ou.Permissions),
+ (nameof(OrganizationUser.ResetPasswordKey), typeof(string), ou => ou.ResetPasswordKey),
+ };
+
+ foreach (var (name, type, getter) in columnData)
+ {
+ var column = new DataColumn(name, type);
+ table.Columns.Add(column);
+ }
+
+ foreach (var orgUser in orgUsers ?? new OrganizationUser[] { })
+ {
+ var row = table.NewRow();
+ foreach (var (name, type, getter) in columnData)
+ {
+ var val = getter(orgUser);
+ if (val == null)
+ {
+ row[name] = DBNull.Value;
+ }
+ else
+ {
+ row[name] = val;
+ }
+ }
+ table.Rows.Add(row);
+ }
+
+ return table;
+ }
+ }
+}
diff --git a/src/Infrastructure.Dapper/DapperServiceCollectionExtensions.cs b/src/Infrastructure.Dapper/DapperServiceCollectionExtensions.cs
new file mode 100644
index 0000000000..1dedc3c48a
--- /dev/null
+++ b/src/Infrastructure.Dapper/DapperServiceCollectionExtensions.cs
@@ -0,0 +1,43 @@
+using Bit.Core.Repositories;
+using Bit.Infrastructure.Dapper.Repositories;
+using Microsoft.Extensions.DependencyInjection;
+
+namespace Bit.Infrastructure.Dapper
+{
+ public static class DapperServiceCollectionExtensions
+ {
+ public static void AddDapperRepositories(this IServiceCollection services, bool selfHosted)
+ {
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+
+ if (selfHosted)
+ {
+ services.AddSingleton();
+ }
+ }
+ }
+}
diff --git a/src/Infrastructure.Dapper/Infrastructure.Dapper.csproj b/src/Infrastructure.Dapper/Infrastructure.Dapper.csproj
new file mode 100644
index 0000000000..295110cc29
--- /dev/null
+++ b/src/Infrastructure.Dapper/Infrastructure.Dapper.csproj
@@ -0,0 +1,16 @@
+
+
+
+ net5.0
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/Core/Repositories/BaseRepository.cs b/src/Infrastructure.Dapper/Repositories/BaseRepository.cs
similarity index 94%
rename from src/Core/Repositories/BaseRepository.cs
rename to src/Infrastructure.Dapper/Repositories/BaseRepository.cs
index ab996ae710..3c7701d3fc 100644
--- a/src/Core/Repositories/BaseRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/BaseRepository.cs
@@ -1,7 +1,7 @@
using System;
using Dapper;
-namespace Bit.Core.Repositories
+namespace Bit.Infrastructure.Dapper.Repositories
{
public abstract class BaseRepository
{
diff --git a/src/Core/Repositories/SqlServer/CipherRepository.cs b/src/Infrastructure.Dapper/Repositories/CipherRepository.cs
similarity index 99%
rename from src/Core/Repositories/SqlServer/CipherRepository.cs
rename to src/Infrastructure.Dapper/Repositories/CipherRepository.cs
index 0b37e2dcac..b3915b8787 100644
--- a/src/Core/Repositories/SqlServer/CipherRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/CipherRepository.cs
@@ -4,15 +4,16 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Bit.Core.Utilities;
using Core.Models.Data;
using Dapper;
using Newtonsoft.Json;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class CipherRepository : Repository, ICipherRepository
{
diff --git a/src/Core/Repositories/SqlServer/CollectionCipherRepository.cs b/src/Infrastructure.Dapper/Repositories/CollectionCipherRepository.cs
similarity index 97%
rename from src/Core/Repositories/SqlServer/CollectionCipherRepository.cs
rename to src/Infrastructure.Dapper/Repositories/CollectionCipherRepository.cs
index 8d3f5e03ea..62732ca6c1 100644
--- a/src/Core/Repositories/SqlServer/CollectionCipherRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/CollectionCipherRepository.cs
@@ -4,12 +4,13 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Bit.Core.Utilities;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class CollectionCipherRepository : BaseRepository, ICollectionCipherRepository
{
diff --git a/src/Core/Repositories/SqlServer/CollectionRepository.cs b/src/Infrastructure.Dapper/Repositories/CollectionRepository.cs
similarity index 98%
rename from src/Core/Repositories/SqlServer/CollectionRepository.cs
rename to src/Infrastructure.Dapper/Repositories/CollectionRepository.cs
index b41706e284..2f8e87a5b2 100644
--- a/src/Core/Repositories/SqlServer/CollectionRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/CollectionRepository.cs
@@ -4,14 +4,15 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Bit.Core.Utilities;
using Dapper;
using Newtonsoft.Json;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class CollectionRepository : Repository, ICollectionRepository
{
diff --git a/src/Infrastructure.Dapper/Repositories/DateTimeHandler.cs b/src/Infrastructure.Dapper/Repositories/DateTimeHandler.cs
new file mode 100644
index 0000000000..91211d537a
--- /dev/null
+++ b/src/Infrastructure.Dapper/Repositories/DateTimeHandler.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Data;
+using Dapper;
+
+namespace Bit.Infrastructure.Dapper.Repositories
+{
+ public class DateTimeHandler : SqlMapper.TypeHandler
+ {
+ public override void SetValue(IDbDataParameter parameter, DateTime value)
+ {
+ parameter.Value = value;
+ }
+
+ public override DateTime Parse(object value)
+ {
+ return DateTime.SpecifyKind((DateTime)value, DateTimeKind.Utc);
+ }
+ }
+}
diff --git a/src/Core/Repositories/SqlServer/DeviceRepository.cs b/src/Infrastructure.Dapper/Repositories/DeviceRepository.cs
similarity index 96%
rename from src/Core/Repositories/SqlServer/DeviceRepository.cs
rename to src/Infrastructure.Dapper/Repositories/DeviceRepository.cs
index 961edc2477..e674cddd73 100644
--- a/src/Core/Repositories/SqlServer/DeviceRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/DeviceRepository.cs
@@ -4,11 +4,12 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class DeviceRepository : Repository, IDeviceRepository
{
diff --git a/src/Core/Repositories/SqlServer/EmergencyAccessRepository.cs b/src/Infrastructure.Dapper/Repositories/EmergencyAccessRepository.cs
similarity index 97%
rename from src/Core/Repositories/SqlServer/EmergencyAccessRepository.cs
rename to src/Infrastructure.Dapper/Repositories/EmergencyAccessRepository.cs
index 38d4c0125f..0f987372b7 100644
--- a/src/Core/Repositories/SqlServer/EmergencyAccessRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/EmergencyAccessRepository.cs
@@ -4,12 +4,13 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class EmergencyAccessRepository : Repository, IEmergencyAccessRepository
{
diff --git a/src/Core/Repositories/SqlServer/EventRepository.cs b/src/Infrastructure.Dapper/Repositories/EventRepository.cs
similarity index 99%
rename from src/Core/Repositories/SqlServer/EventRepository.cs
rename to src/Infrastructure.Dapper/Repositories/EventRepository.cs
index 8ce19f64b7..5279d0df2d 100644
--- a/src/Core/Repositories/SqlServer/EventRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/EventRepository.cs
@@ -4,12 +4,13 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class EventRepository : Repository, IEventRepository
{
diff --git a/src/Core/Repositories/SqlServer/FolderRepository.cs b/src/Infrastructure.Dapper/Repositories/FolderRepository.cs
similarity index 93%
rename from src/Core/Repositories/SqlServer/FolderRepository.cs
rename to src/Infrastructure.Dapper/Repositories/FolderRepository.cs
index 7a91b13c85..ea4bc78f7c 100644
--- a/src/Core/Repositories/SqlServer/FolderRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/FolderRepository.cs
@@ -4,11 +4,12 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class FolderRepository : Repository, IFolderRepository
{
diff --git a/src/Core/Repositories/SqlServer/GrantRepository.cs b/src/Infrastructure.Dapper/Repositories/GrantRepository.cs
similarity index 96%
rename from src/Core/Repositories/SqlServer/GrantRepository.cs
rename to src/Infrastructure.Dapper/Repositories/GrantRepository.cs
index b725b1a02c..8a7b079806 100644
--- a/src/Core/Repositories/SqlServer/GrantRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/GrantRepository.cs
@@ -3,11 +3,12 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class GrantRepository : BaseRepository, IGrantRepository
{
diff --git a/src/Core/Repositories/SqlServer/GroupRepository.cs b/src/Infrastructure.Dapper/Repositories/GroupRepository.cs
similarity index 98%
rename from src/Core/Repositories/SqlServer/GroupRepository.cs
rename to src/Infrastructure.Dapper/Repositories/GroupRepository.cs
index 7c7f8e5fee..d7ea1fec0f 100644
--- a/src/Core/Repositories/SqlServer/GroupRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/GroupRepository.cs
@@ -4,14 +4,15 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Bit.Core.Utilities;
using Dapper;
using Newtonsoft.Json;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class GroupRepository : Repository, IGroupRepository
{
diff --git a/src/Core/Repositories/SqlServer/InstallationRepository.cs b/src/Infrastructure.Dapper/Repositories/InstallationRepository.cs
similarity index 83%
rename from src/Core/Repositories/SqlServer/InstallationRepository.cs
rename to src/Infrastructure.Dapper/Repositories/InstallationRepository.cs
index 2cd8ad83f6..b32012bb28 100644
--- a/src/Core/Repositories/SqlServer/InstallationRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/InstallationRepository.cs
@@ -1,8 +1,9 @@
using System;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class InstallationRepository : Repository, IInstallationRepository
{
diff --git a/src/Core/Repositories/SqlServer/MaintenanceRepository.cs b/src/Infrastructure.Dapper/Repositories/MaintenanceRepository.cs
similarity index 96%
rename from src/Core/Repositories/SqlServer/MaintenanceRepository.cs
rename to src/Infrastructure.Dapper/Repositories/MaintenanceRepository.cs
index 0600381707..12d9422481 100644
--- a/src/Core/Repositories/SqlServer/MaintenanceRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/MaintenanceRepository.cs
@@ -1,10 +1,11 @@
using System.Data;
using System.Data.SqlClient;
using System.Threading.Tasks;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class MaintenanceRepository : BaseRepository, IMaintenanceRepository
{
diff --git a/src/Core/Repositories/SqlServer/OrganizationRepository.cs b/src/Infrastructure.Dapper/Repositories/OrganizationRepository.cs
similarity index 97%
rename from src/Core/Repositories/SqlServer/OrganizationRepository.cs
rename to src/Infrastructure.Dapper/Repositories/OrganizationRepository.cs
index a545741b6a..1e8283fad8 100644
--- a/src/Core/Repositories/SqlServer/OrganizationRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/OrganizationRepository.cs
@@ -4,12 +4,13 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class OrganizationRepository : Repository, IOrganizationRepository
{
diff --git a/src/Core/Repositories/SqlServer/OrganizationSponsorshipRepository.cs b/src/Infrastructure.Dapper/Repositories/OrganizationSponsorshipRepository.cs
similarity index 96%
rename from src/Core/Repositories/SqlServer/OrganizationSponsorshipRepository.cs
rename to src/Infrastructure.Dapper/Repositories/OrganizationSponsorshipRepository.cs
index 70b55d0d85..f80d3cf7d9 100644
--- a/src/Core/Repositories/SqlServer/OrganizationSponsorshipRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/OrganizationSponsorshipRepository.cs
@@ -3,11 +3,12 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class OrganizationSponsorshipRepository : Repository, IOrganizationSponsorshipRepository
{
diff --git a/src/Core/Repositories/SqlServer/OrganizationUserRepository.cs b/src/Infrastructure.Dapper/Repositories/OrganizationUserRepository.cs
similarity index 99%
rename from src/Core/Repositories/SqlServer/OrganizationUserRepository.cs
rename to src/Infrastructure.Dapper/Repositories/OrganizationUserRepository.cs
index 84f247f5f6..a129d4b755 100644
--- a/src/Core/Repositories/SqlServer/OrganizationUserRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/OrganizationUserRepository.cs
@@ -4,15 +4,16 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Bit.Core.Utilities;
using Dapper;
using Newtonsoft.Json;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class OrganizationUserRepository : Repository, IOrganizationUserRepository
{
diff --git a/src/Core/Repositories/SqlServer/PolicyRepository.cs b/src/Infrastructure.Dapper/Repositories/PolicyRepository.cs
similarity index 97%
rename from src/Core/Repositories/SqlServer/PolicyRepository.cs
rename to src/Infrastructure.Dapper/Repositories/PolicyRepository.cs
index 4d5a9fe280..9989cf2001 100644
--- a/src/Core/Repositories/SqlServer/PolicyRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/PolicyRepository.cs
@@ -4,12 +4,13 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class PolicyRepository : Repository, IPolicyRepository
{
diff --git a/src/Core/Repositories/SqlServer/ProviderOrganizationRepository.cs b/src/Infrastructure.Dapper/Repositories/ProviderOrganizationRepository.cs
similarity index 94%
rename from src/Core/Repositories/SqlServer/ProviderOrganizationRepository.cs
rename to src/Infrastructure.Dapper/Repositories/ProviderOrganizationRepository.cs
index c7060bf836..2b4d2f22d2 100644
--- a/src/Core/Repositories/SqlServer/ProviderOrganizationRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/ProviderOrganizationRepository.cs
@@ -3,13 +3,14 @@ using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities.Provider;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table.Provider;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Dapper;
using Microsoft.Data.SqlClient;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class ProviderOrganizationRepository : Repository, IProviderOrganizationRepository
{
diff --git a/src/Core/Repositories/SqlServer/ProviderRepository.cs b/src/Infrastructure.Dapper/Repositories/ProviderRepository.cs
similarity index 93%
rename from src/Core/Repositories/SqlServer/ProviderRepository.cs
rename to src/Infrastructure.Dapper/Repositories/ProviderRepository.cs
index 1740e8efd4..6f56f58caf 100644
--- a/src/Core/Repositories/SqlServer/ProviderRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/ProviderRepository.cs
@@ -4,12 +4,13 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities.Provider;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table.Provider;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class ProviderRepository : Repository, IProviderRepository
{
diff --git a/src/Core/Repositories/SqlServer/ProviderUserRepository.cs b/src/Infrastructure.Dapper/Repositories/ProviderUserRepository.cs
similarity index 98%
rename from src/Core/Repositories/SqlServer/ProviderUserRepository.cs
rename to src/Infrastructure.Dapper/Repositories/ProviderUserRepository.cs
index 0ba0233964..4f59ce14ad 100644
--- a/src/Core/Repositories/SqlServer/ProviderUserRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/ProviderUserRepository.cs
@@ -3,15 +3,16 @@ using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities.Provider;
using Bit.Core.Enums.Provider;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table.Provider;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Bit.Core.Utilities;
using Dapper;
using Microsoft.Data.SqlClient;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class ProviderUserRepository : Repository, IProviderUserRepository
{
diff --git a/src/Core/Repositories/SqlServer/Repository.cs b/src/Infrastructure.Dapper/Repositories/Repository.cs
similarity index 96%
rename from src/Core/Repositories/SqlServer/Repository.cs
rename to src/Infrastructure.Dapper/Repositories/Repository.cs
index ba3cb3e049..e1c524430a 100644
--- a/src/Core/Repositories/SqlServer/Repository.cs
+++ b/src/Infrastructure.Dapper/Repositories/Repository.cs
@@ -3,10 +3,11 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
+using Bit.Core.Repositories;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public abstract class Repository : BaseRepository, IRepository
where TId : IEquatable
diff --git a/src/Core/Repositories/SqlServer/SendRepository.cs b/src/Infrastructure.Dapper/Repositories/SendRepository.cs
similarity index 94%
rename from src/Core/Repositories/SqlServer/SendRepository.cs
rename to src/Infrastructure.Dapper/Repositories/SendRepository.cs
index f9aeee8288..fa74f26039 100644
--- a/src/Core/Repositories/SqlServer/SendRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/SendRepository.cs
@@ -4,11 +4,12 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class SendRepository : Repository, ISendRepository
{
diff --git a/src/Core/Repositories/SqlServer/SsoConfigRepository.cs b/src/Infrastructure.Dapper/Repositories/SsoConfigRepository.cs
similarity index 95%
rename from src/Core/Repositories/SqlServer/SsoConfigRepository.cs
rename to src/Infrastructure.Dapper/Repositories/SsoConfigRepository.cs
index 940c48aa1a..26aef40810 100644
--- a/src/Core/Repositories/SqlServer/SsoConfigRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/SsoConfigRepository.cs
@@ -4,11 +4,12 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class SsoConfigRepository : Repository, ISsoConfigRepository
{
diff --git a/src/Core/Repositories/SqlServer/SsoUserRepository.cs b/src/Infrastructure.Dapper/Repositories/SsoUserRepository.cs
similarity index 93%
rename from src/Core/Repositories/SqlServer/SsoUserRepository.cs
rename to src/Infrastructure.Dapper/Repositories/SsoUserRepository.cs
index 38ce2c95d3..2249204e38 100644
--- a/src/Core/Repositories/SqlServer/SsoUserRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/SsoUserRepository.cs
@@ -3,11 +3,12 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class SsoUserRepository : Repository, ISsoUserRepository
{
diff --git a/src/Core/Repositories/SqlServer/TaxRateRepository.cs b/src/Infrastructure.Dapper/Repositories/TaxRateRepository.cs
similarity index 95%
rename from src/Core/Repositories/SqlServer/TaxRateRepository.cs
rename to src/Infrastructure.Dapper/Repositories/TaxRateRepository.cs
index 288cc94d75..8914b88351 100644
--- a/src/Core/Repositories/SqlServer/TaxRateRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/TaxRateRepository.cs
@@ -3,11 +3,12 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class TaxRateRepository : Repository, ITaxRateRepository
{
diff --git a/src/Core/Repositories/SqlServer/TransactionRepository.cs b/src/Infrastructure.Dapper/Repositories/TransactionRepository.cs
similarity index 95%
rename from src/Core/Repositories/SqlServer/TransactionRepository.cs
rename to src/Infrastructure.Dapper/Repositories/TransactionRepository.cs
index a5be77de25..a4c1b7b538 100644
--- a/src/Core/Repositories/SqlServer/TransactionRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/TransactionRepository.cs
@@ -4,12 +4,13 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class TransactionRepository : Repository, ITransactionRepository
{
diff --git a/src/Core/Repositories/SqlServer/U2fRepository.cs b/src/Infrastructure.Dapper/Repositories/U2fRepository.cs
similarity index 94%
rename from src/Core/Repositories/SqlServer/U2fRepository.cs
rename to src/Infrastructure.Dapper/Repositories/U2fRepository.cs
index 6f997c0501..4b0c72a10c 100644
--- a/src/Core/Repositories/SqlServer/U2fRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/U2fRepository.cs
@@ -4,11 +4,12 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
-using Bit.Core.Models.Table;
+using Bit.Core.Entities;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class U2fRepository : Repository, IU2fRepository
{
diff --git a/src/Core/Repositories/SqlServer/UserRepository.cs b/src/Infrastructure.Dapper/Repositories/UserRepository.cs
similarity index 98%
rename from src/Core/Repositories/SqlServer/UserRepository.cs
rename to src/Infrastructure.Dapper/Repositories/UserRepository.cs
index a558bed3cc..58176d3f79 100644
--- a/src/Core/Repositories/SqlServer/UserRepository.cs
+++ b/src/Infrastructure.Dapper/Repositories/UserRepository.cs
@@ -4,13 +4,14 @@ using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Threading.Tasks;
+using Bit.Core.Entities;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
+using Bit.Core.Repositories;
using Bit.Core.Settings;
using Bit.Core.Utilities;
using Dapper;
-namespace Bit.Core.Repositories.SqlServer
+namespace Bit.Infrastructure.Dapper.Repositories
{
public class UserRepository : Repository, IUserRepository
{
diff --git a/src/Infrastructure.EntityFramework/EntityFrameworkServiceCollectionExtensions.cs b/src/Infrastructure.EntityFramework/EntityFrameworkServiceCollectionExtensions.cs
new file mode 100644
index 0000000000..f8552ad2ca
--- /dev/null
+++ b/src/Infrastructure.EntityFramework/EntityFrameworkServiceCollectionExtensions.cs
@@ -0,0 +1,65 @@
+using System;
+using AutoMapper;
+using Bit.Core.Enums;
+using Bit.Core.Repositories;
+using Bit.Infrastructure.EntityFramework.Repositories;
+using LinqToDB.EntityFrameworkCore;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.Extensions.DependencyInjection;
+
+namespace Bit.Infrastructure.EntityFramework
+{
+ public static class EntityFrameworkServiceCollectionExtensions
+ {
+ public static void AddEFRepositories(this IServiceCollection services, bool selfHosted, string connectionString,
+ SupportedDatabaseProviders provider)
+ {
+ if (string.IsNullOrWhiteSpace(connectionString))
+ {
+ throw new Exception($"Database provider type {provider} was selected but no connection string was found.");
+ }
+ LinqToDBForEFTools.Initialize();
+ services.AddAutoMapper(typeof(UserRepository));
+ services.AddDbContext(options =>
+ {
+ if (provider == SupportedDatabaseProviders.Postgres)
+ {
+ options.UseNpgsql(connectionString);
+ }
+ else if (provider == SupportedDatabaseProviders.MySql)
+ {
+ options.UseMySql(connectionString, ServerVersion.AutoDetect(connectionString));
+ }
+ });
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+ services.AddSingleton();
+
+ if (selfHosted)
+ {
+ services.AddSingleton();
+ }
+ }
+ }
+}
diff --git a/src/Infrastructure.EntityFramework/Infrastructure.EntityFramework.csproj b/src/Infrastructure.EntityFramework/Infrastructure.EntityFramework.csproj
new file mode 100644
index 0000000000..671d5c3d06
--- /dev/null
+++ b/src/Infrastructure.EntityFramework/Infrastructure.EntityFramework.csproj
@@ -0,0 +1,19 @@
+
+
+
+ net5.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/Core/Models/EntityFramework/Cipher.cs b/src/Infrastructure.EntityFramework/Models/Cipher.cs
similarity index 69%
rename from src/Core/Models/EntityFramework/Cipher.cs
rename to src/Infrastructure.EntityFramework/Models/Cipher.cs
index 59b21cc14c..06cbcb04a2 100644
--- a/src/Core/Models/EntityFramework/Cipher.cs
+++ b/src/Infrastructure.EntityFramework/Models/Cipher.cs
@@ -1,10 +1,9 @@
using System.Collections.Generic;
-using System.Text.Json;
using AutoMapper;
-namespace Bit.Core.Models.EntityFramework
+namespace Bit.Infrastructure.EntityFramework.Models
{
- public class Cipher : Table.Cipher
+ public class Cipher : Core.Entities.Cipher
{
public virtual User User { get; set; }
public virtual Organization Organization { get; set; }
@@ -15,7 +14,7 @@ namespace Bit.Core.Models.EntityFramework
{
public CipherMapperProfile()
{
- CreateMap().ReverseMap();
+ CreateMap().ReverseMap();
}
}
}
diff --git a/src/Core/Models/EntityFramework/Collection.cs b/src/Infrastructure.EntityFramework/Models/Collection.cs
similarity index 73%
rename from src/Core/Models/EntityFramework/Collection.cs
rename to src/Infrastructure.EntityFramework/Models/Collection.cs
index 4b4688cef1..07ffd8d581 100644
--- a/src/Core/Models/EntityFramework/Collection.cs
+++ b/src/Infrastructure.EntityFramework/Models/Collection.cs
@@ -1,10 +1,9 @@
using System.Collections.Generic;
-using System.Text.Json;
using AutoMapper;
-namespace Bit.Core.Models.EntityFramework
+namespace Bit.Infrastructure.EntityFramework.Models
{
- public class Collection : Table.Collection
+ public class Collection : Core.Entities.Collection
{
public virtual Organization Organization { get; set; }
public virtual ICollection CollectionUsers { get; set; }
@@ -16,7 +15,7 @@ namespace Bit.Core.Models.EntityFramework
{
public CollectionMapperProfile()
{
- CreateMap().ReverseMap();
+ CreateMap().ReverseMap();
}
}
}
diff --git a/src/Core/Models/EntityFramework/CollectionCipher.cs b/src/Infrastructure.EntityFramework/Models/CollectionCipher.cs
similarity index 50%
rename from src/Core/Models/EntityFramework/CollectionCipher.cs
rename to src/Infrastructure.EntityFramework/Models/CollectionCipher.cs
index fcff668a72..8a7de5a780 100644
--- a/src/Core/Models/EntityFramework/CollectionCipher.cs
+++ b/src/Infrastructure.EntityFramework/Models/CollectionCipher.cs
@@ -1,10 +1,8 @@
-using System.Collections.Generic;
-using System.Text.Json;
-using AutoMapper;
+using AutoMapper;
-namespace Bit.Core.Models.EntityFramework
+namespace Bit.Infrastructure.EntityFramework.Models
{
- public class CollectionCipher : Table.CollectionCipher
+ public class CollectionCipher : Core.Entities.CollectionCipher
{
public virtual Cipher Cipher { get; set; }
public virtual Collection Collection { get; set; }
@@ -14,7 +12,7 @@ namespace Bit.Core.Models.EntityFramework
{
public CollectionCipherMapperProfile()
{
- CreateMap().ReverseMap();
+ CreateMap().ReverseMap();
}
}
}
diff --git a/src/Core/Models/EntityFramework/CollectionGroup.cs b/src/Infrastructure.EntityFramework/Models/CollectionGroup.cs
similarity index 58%
rename from src/Core/Models/EntityFramework/CollectionGroup.cs
rename to src/Infrastructure.EntityFramework/Models/CollectionGroup.cs
index ba97c366fc..fdded35216 100644
--- a/src/Core/Models/EntityFramework/CollectionGroup.cs
+++ b/src/Infrastructure.EntityFramework/Models/CollectionGroup.cs
@@ -1,8 +1,8 @@
using AutoMapper;
-namespace Bit.Core.Models.EntityFramework
+namespace Bit.Infrastructure.EntityFramework.Models
{
- public class CollectionGroup : Table.CollectionGroup
+ public class CollectionGroup : Core.Entities.CollectionGroup
{
public virtual Collection Collection { get; set; }
public virtual Group Group { get; set; }
@@ -12,7 +12,7 @@ namespace Bit.Core.Models.EntityFramework
{
public CollectionGroupMapperProfile()
{
- CreateMap().ReverseMap();
+ CreateMap().ReverseMap();
}
}
}
diff --git a/src/Core/Models/EntityFramework/CollectionUser.cs b/src/Infrastructure.EntityFramework/Models/CollectionUser.cs
similarity index 60%
rename from src/Core/Models/EntityFramework/CollectionUser.cs
rename to src/Infrastructure.EntityFramework/Models/CollectionUser.cs
index f959728df6..24d10c2a76 100644
--- a/src/Core/Models/EntityFramework/CollectionUser.cs
+++ b/src/Infrastructure.EntityFramework/Models/CollectionUser.cs
@@ -1,8 +1,8 @@
using AutoMapper;
-namespace Bit.Core.Models.EntityFramework
+namespace Bit.Infrastructure.EntityFramework.Models
{
- public class CollectionUser : Table.CollectionUser
+ public class CollectionUser : Core.Entities.CollectionUser
{
public virtual Collection Collection { get; set; }
public virtual OrganizationUser OrganizationUser { get; set; }
@@ -12,7 +12,7 @@ namespace Bit.Core.Models.EntityFramework
{
public CollectionUserMapperProfile()
{
- CreateMap().ReverseMap();
+ CreateMap().ReverseMap();
}
}
}
diff --git a/src/Infrastructure.EntityFramework/Models/Device.cs b/src/Infrastructure.EntityFramework/Models/Device.cs
new file mode 100644
index 0000000000..675ed917a8
--- /dev/null
+++ b/src/Infrastructure.EntityFramework/Models/Device.cs
@@ -0,0 +1,17 @@
+using AutoMapper;
+
+namespace Bit.Infrastructure.EntityFramework.Models
+{
+ public class Device : Core.Entities.Device
+ {
+ public virtual User User { get; set; }
+ }
+
+ public class DeviceMapperProfile : Profile
+ {
+ public DeviceMapperProfile()
+ {
+ CreateMap().ReverseMap();
+ }
+ }
+}
diff --git a/src/Infrastructure.EntityFramework/Models/EmergencyAccess.cs b/src/Infrastructure.EntityFramework/Models/EmergencyAccess.cs
new file mode 100644
index 0000000000..e92eba8eef
--- /dev/null
+++ b/src/Infrastructure.EntityFramework/Models/EmergencyAccess.cs
@@ -0,0 +1,18 @@
+using AutoMapper;
+
+namespace Bit.Infrastructure.EntityFramework.Models
+{
+ public class EmergencyAccess : Core.Entities.EmergencyAccess
+ {
+ public virtual User Grantee { get; set; }
+ public virtual User Grantor { get; set; }
+ }
+
+ public class EmergencyAccessMapperProfile : Profile
+ {
+ public EmergencyAccessMapperProfile()
+ {
+ CreateMap().ReverseMap();
+ }
+ }
+}
diff --git a/src/Infrastructure.EntityFramework/Models/Event.cs b/src/Infrastructure.EntityFramework/Models/Event.cs
new file mode 100644
index 0000000000..558f2a2856
--- /dev/null
+++ b/src/Infrastructure.EntityFramework/Models/Event.cs
@@ -0,0 +1,16 @@
+using AutoMapper;
+
+namespace Bit.Infrastructure.EntityFramework.Models
+{
+ public class Event : Core.Entities.Event
+ {
+ }
+
+ public class EventMapperProfile : Profile
+ {
+ public EventMapperProfile()
+ {
+ CreateMap().ReverseMap();
+ }
+ }
+}
diff --git a/src/Infrastructure.EntityFramework/Models/Folder.cs b/src/Infrastructure.EntityFramework/Models/Folder.cs
new file mode 100644
index 0000000000..1918dfe733
--- /dev/null
+++ b/src/Infrastructure.EntityFramework/Models/Folder.cs
@@ -0,0 +1,17 @@
+using AutoMapper;
+
+namespace Bit.Infrastructure.EntityFramework.Models
+{
+ public class Folder : Core.Entities.Folder
+ {
+ public virtual User User { get; set; }
+ }
+
+ public class FolderMapperProfile : Profile
+ {
+ public FolderMapperProfile()
+ {
+ CreateMap().ReverseMap();
+ }
+ }
+}
diff --git a/src/Infrastructure.EntityFramework/Models/Grant.cs b/src/Infrastructure.EntityFramework/Models/Grant.cs
new file mode 100644
index 0000000000..251d16437e
--- /dev/null
+++ b/src/Infrastructure.EntityFramework/Models/Grant.cs
@@ -0,0 +1,16 @@
+using AutoMapper;
+
+namespace Bit.Infrastructure.EntityFramework.Models
+{
+ public class Grant : Core.Entities.Grant
+ {
+ }
+
+ public class GrantMapperProfile : Profile
+ {
+ public GrantMapperProfile()
+ {
+ CreateMap().ReverseMap();
+ }
+ }
+}
diff --git a/src/Core/Models/EntityFramework/Group.cs b/src/Infrastructure.EntityFramework/Models/Group.cs
similarity index 66%
rename from src/Core/Models/EntityFramework/Group.cs
rename to src/Infrastructure.EntityFramework/Models/Group.cs
index b40a0f0f6c..3ae89f9d50 100644
--- a/src/Core/Models/EntityFramework/Group.cs
+++ b/src/Infrastructure.EntityFramework/Models/Group.cs
@@ -1,10 +1,9 @@
using System.Collections.Generic;
-using System.Text.Json;
using AutoMapper;
-namespace Bit.Core.Models.EntityFramework
+namespace Bit.Infrastructure.EntityFramework.Models
{
- public class Group : Table.Group
+ public class Group : Core.Entities.Group
{
public virtual Organization Organization { get; set; }
public virtual ICollection GroupUsers { get; set; }
@@ -14,7 +13,7 @@ namespace Bit.Core.Models.EntityFramework
{
public GroupMapperProfile()
{
- CreateMap().ReverseMap();
+ CreateMap().ReverseMap();
}
}
}
diff --git a/src/Core/Models/EntityFramework/GroupUser.cs b/src/Infrastructure.EntityFramework/Models/GroupUser.cs
similarity index 52%
rename from src/Core/Models/EntityFramework/GroupUser.cs
rename to src/Infrastructure.EntityFramework/Models/GroupUser.cs
index f1635aed2b..5a81ed884e 100644
--- a/src/Core/Models/EntityFramework/GroupUser.cs
+++ b/src/Infrastructure.EntityFramework/Models/GroupUser.cs
@@ -1,10 +1,8 @@
-using System.Collections.Generic;
-using System.Text.Json;
-using AutoMapper;
+using AutoMapper;
-namespace Bit.Core.Models.EntityFramework
+namespace Bit.Infrastructure.EntityFramework.Models
{
- public class GroupUser : Table.GroupUser
+ public class GroupUser : Core.Entities.GroupUser
{
public virtual Group Group { get; set; }
public virtual OrganizationUser OrganizationUser { get; set; }
@@ -14,7 +12,7 @@ namespace Bit.Core.Models.EntityFramework
{
public GroupUserMapperProfile()
{
- CreateMap().ReverseMap();
+ CreateMap().ReverseMap();
}
}
}
diff --git a/src/Infrastructure.EntityFramework/Models/Installation.cs b/src/Infrastructure.EntityFramework/Models/Installation.cs
new file mode 100644
index 0000000000..92bbd2abbd
--- /dev/null
+++ b/src/Infrastructure.EntityFramework/Models/Installation.cs
@@ -0,0 +1,16 @@
+using AutoMapper;
+
+namespace Bit.Infrastructure.EntityFramework.Models
+{
+ public class Installation : Core.Entities.Installation
+ {
+ }
+
+ public class InstallationMapperProfile : Profile
+ {
+ public InstallationMapperProfile()
+ {
+ CreateMap().ReverseMap();
+ }
+ }
+}
diff --git a/src/Core/Models/EntityFramework/Organization.cs b/src/Infrastructure.EntityFramework/Models/Organization.cs
similarity index 78%
rename from src/Core/Models/EntityFramework/Organization.cs
rename to src/Infrastructure.EntityFramework/Models/Organization.cs
index ff3d29b9a4..40c7d19ae8 100644
--- a/src/Core/Models/EntityFramework/Organization.cs
+++ b/src/Infrastructure.EntityFramework/Models/Organization.cs
@@ -1,9 +1,9 @@
using System.Collections.Generic;
using AutoMapper;
-namespace Bit.Core.Models.EntityFramework
+namespace Bit.Infrastructure.EntityFramework.Models
{
- public class Organization : Table.Organization
+ public class Organization : Core.Entities.Organization
{
public virtual ICollection Ciphers { get; set; }
public virtual ICollection OrganizationUsers { get; set; }
@@ -18,7 +18,7 @@ namespace Bit.Core.Models.EntityFramework
{
public OrganizationMapperProfile()
{
- CreateMap().ReverseMap();
+ CreateMap().ReverseMap();
}
}
}
diff --git a/src/Core/Models/EntityFramework/OrganizationSponsorship.cs b/src/Infrastructure.EntityFramework/Models/OrganizationSponsorship.cs
similarity index 58%
rename from src/Core/Models/EntityFramework/OrganizationSponsorship.cs
rename to src/Infrastructure.EntityFramework/Models/OrganizationSponsorship.cs
index 53dcd3e9ed..a80e950e22 100644
--- a/src/Core/Models/EntityFramework/OrganizationSponsorship.cs
+++ b/src/Infrastructure.EntityFramework/Models/OrganizationSponsorship.cs
@@ -1,9 +1,8 @@
-using System.Collections.Generic;
-using AutoMapper;
+using AutoMapper;
-namespace Bit.Core.Models.EntityFramework
+namespace Bit.Infrastructure.EntityFramework.Models
{
- public class OrganizationSponsorship : Table.OrganizationSponsorship
+ public class OrganizationSponsorship : Core.Entities.OrganizationSponsorship
{
public virtual Installation Installation { get; set; }
public virtual Organization SponsoringOrganization { get; set; }
@@ -14,7 +13,7 @@ namespace Bit.Core.Models.EntityFramework
{
public OrganizationSponsorshipMapperProfile()
{
- CreateMap().ReverseMap();
+ CreateMap().ReverseMap();
}
}
}
diff --git a/src/Core/Models/EntityFramework/OrganizationUser.cs b/src/Infrastructure.EntityFramework/Models/OrganizationUser.cs
similarity index 65%
rename from src/Core/Models/EntityFramework/OrganizationUser.cs
rename to src/Infrastructure.EntityFramework/Models/OrganizationUser.cs
index 74dd98faee..255e35c5d0 100644
--- a/src/Core/Models/EntityFramework/OrganizationUser.cs
+++ b/src/Infrastructure.EntityFramework/Models/OrganizationUser.cs
@@ -1,10 +1,9 @@
using System.Collections.Generic;
-using System.Text.Json;
using AutoMapper;
-namespace Bit.Core.Models.EntityFramework
+namespace Bit.Infrastructure.EntityFramework.Models
{
- public class OrganizationUser : Table.OrganizationUser
+ public class OrganizationUser : Core.Entities.OrganizationUser
{
public virtual Organization Organization { get; set; }
public virtual User User { get; set; }
@@ -15,7 +14,7 @@ namespace Bit.Core.Models.EntityFramework
{
public OrganizationUserMapperProfile()
{
- CreateMap().ReverseMap();
+ CreateMap().ReverseMap();
}
}
}
diff --git a/src/Infrastructure.EntityFramework/Models/Policy.cs b/src/Infrastructure.EntityFramework/Models/Policy.cs
new file mode 100644
index 0000000000..953556cddc
--- /dev/null
+++ b/src/Infrastructure.EntityFramework/Models/Policy.cs
@@ -0,0 +1,17 @@
+using AutoMapper;
+
+namespace Bit.Infrastructure.EntityFramework.Models
+{
+ public class Policy : Core.Entities.Policy
+ {
+ public virtual Organization Organization { get; set; }
+ }
+
+ public class PolicyMapperProfile : Profile
+ {
+ public PolicyMapperProfile()
+ {
+ CreateMap().ReverseMap();
+ }
+ }
+}
diff --git a/src/Infrastructure.EntityFramework/Models/Provider/Provider.cs b/src/Infrastructure.EntityFramework/Models/Provider/Provider.cs
new file mode 100644
index 0000000000..8efa1558dd
--- /dev/null
+++ b/src/Infrastructure.EntityFramework/Models/Provider/Provider.cs
@@ -0,0 +1,16 @@
+using AutoMapper;
+
+namespace Bit.Infrastructure.EntityFramework.Models
+{
+ public class Provider : Core.Entities.Provider.Provider
+ {
+ }
+
+ public class ProviderMapperProfile : Profile
+ {
+ public ProviderMapperProfile()
+ {
+ CreateMap().ReverseMap();
+ }
+ }
+}
diff --git a/src/Core/Models/EntityFramework/Provider/ProviderOrganization.cs b/src/Infrastructure.EntityFramework/Models/Provider/ProviderOrganization.cs
similarity index 55%
rename from src/Core/Models/EntityFramework/Provider/ProviderOrganization.cs
rename to src/Infrastructure.EntityFramework/Models/Provider/ProviderOrganization.cs
index f052169466..13aa521104 100644
--- a/src/Core/Models/EntityFramework/Provider/ProviderOrganization.cs
+++ b/src/Infrastructure.EntityFramework/Models/Provider/ProviderOrganization.cs
@@ -1,8 +1,8 @@
using AutoMapper;
-namespace Bit.Core.Models.EntityFramework.Provider
+namespace Bit.Infrastructure.EntityFramework.Models
{
- public class ProviderOrganization : Table.Provider.ProviderOrganization
+ public class ProviderOrganization : Core.Entities.Provider.ProviderOrganization
{
public virtual Provider Provider { get; set; }
public virtual Organization Organization { get; set; }
@@ -12,7 +12,7 @@ namespace Bit.Core.Models.EntityFramework.Provider
{
public ProviderOrganizationMapperProfile()
{
- CreateMap().ReverseMap();
+ CreateMap().ReverseMap();
}
}
}
diff --git a/src/Core/Models/EntityFramework/Provider/ProviderUser.cs b/src/Infrastructure.EntityFramework/Models/Provider/ProviderUser.cs
similarity index 56%
rename from src/Core/Models/EntityFramework/Provider/ProviderUser.cs
rename to src/Infrastructure.EntityFramework/Models/Provider/ProviderUser.cs
index 7b4480073d..9aac138be0 100644
--- a/src/Core/Models/EntityFramework/Provider/ProviderUser.cs
+++ b/src/Infrastructure.EntityFramework/Models/Provider/ProviderUser.cs
@@ -1,8 +1,8 @@
using AutoMapper;
-namespace Bit.Core.Models.EntityFramework.Provider
+namespace Bit.Infrastructure.EntityFramework.Models
{
- public class ProviderUser : Table.Provider.ProviderUser
+ public class ProviderUser : Core.Entities.Provider.ProviderUser
{
public virtual User User { get; set; }
public virtual Provider Provider { get; set; }
@@ -12,7 +12,7 @@ namespace Bit.Core.Models.EntityFramework.Provider
{
public ProviderUserMapperProfile()
{
- CreateMap().ReverseMap();
+ CreateMap().ReverseMap();
}
}
}
diff --git a/src/Infrastructure.EntityFramework/Models/Role.cs b/src/Infrastructure.EntityFramework/Models/Role.cs
new file mode 100644
index 0000000000..a92682e2e9
--- /dev/null
+++ b/src/Infrastructure.EntityFramework/Models/Role.cs
@@ -0,0 +1,16 @@
+using AutoMapper;
+
+namespace Bit.Infrastructure.EntityFramework.Models
+{
+ public class Role : Core.Entities.Role
+ {
+ }
+
+ public class RoleMapperProfile : Profile
+ {
+ public RoleMapperProfile()
+ {
+ CreateMap().ReverseMap();
+ }
+ }
+}
diff --git a/src/Core/Models/EntityFramework/Send.cs b/src/Infrastructure.EntityFramework/Models/Send.cs
similarity index 53%
rename from src/Core/Models/EntityFramework/Send.cs
rename to src/Infrastructure.EntityFramework/Models/Send.cs
index 7343b3216e..5732ac2a1c 100644
--- a/src/Core/Models/EntityFramework/Send.cs
+++ b/src/Infrastructure.EntityFramework/Models/Send.cs
@@ -1,10 +1,8 @@
-using System.Collections.Generic;
-using System.Text.Json;
-using AutoMapper;
+using AutoMapper;
-namespace Bit.Core.Models.EntityFramework
+namespace Bit.Infrastructure.EntityFramework.Models
{
- public class Send : Table.Send
+ public class Send : Core.Entities.Send
{
public virtual Organization Organization { get; set; }
public virtual User User { get; set; }
@@ -14,7 +12,7 @@ namespace Bit.Core.Models.EntityFramework
{
public SendMapperProfile()
{
- CreateMap().ReverseMap();
+ CreateMap().ReverseMap();
}
}
}
diff --git a/src/Infrastructure.EntityFramework/Models/SsoConfig.cs b/src/Infrastructure.EntityFramework/Models/SsoConfig.cs
new file mode 100644
index 0000000000..d748934f2d
--- /dev/null
+++ b/src/Infrastructure.EntityFramework/Models/SsoConfig.cs
@@ -0,0 +1,17 @@
+using AutoMapper;
+
+namespace Bit.Infrastructure.EntityFramework.Models
+{
+ public class SsoConfig : Core.Entities.SsoConfig
+ {
+ public virtual Organization Organization { get; set; }
+ }
+
+ public class SsoConfigMapperProfile : Profile
+ {
+ public SsoConfigMapperProfile()
+ {
+ CreateMap().ReverseMap();
+ }
+ }
+}
diff --git a/src/Core/Models/EntityFramework/SsoUser.cs b/src/Infrastructure.EntityFramework/Models/SsoUser.cs
similarity index 52%
rename from src/Core/Models/EntityFramework/SsoUser.cs
rename to src/Infrastructure.EntityFramework/Models/SsoUser.cs
index c3aef552fd..eb02984422 100644
--- a/src/Core/Models/EntityFramework/SsoUser.cs
+++ b/src/Infrastructure.EntityFramework/Models/SsoUser.cs
@@ -1,10 +1,8 @@
-using System.Collections.Generic;
-using System.Text.Json;
-using AutoMapper;
+using AutoMapper;
-namespace Bit.Core.Models.EntityFramework
+namespace Bit.Infrastructure.EntityFramework.Models
{
- public class SsoUser : Table.SsoUser
+ public class SsoUser : Core.Entities.SsoUser
{
public virtual Organization Organization { get; set; }
public virtual User User { get; set; }
@@ -14,7 +12,7 @@ namespace Bit.Core.Models.EntityFramework
{
public SsoUserMapperProfile()
{
- CreateMap().ReverseMap();
+ CreateMap().ReverseMap();
}
}
}
diff --git a/src/Infrastructure.EntityFramework/Models/TaxRate.cs b/src/Infrastructure.EntityFramework/Models/TaxRate.cs
new file mode 100644
index 0000000000..f464724aec
--- /dev/null
+++ b/src/Infrastructure.EntityFramework/Models/TaxRate.cs
@@ -0,0 +1,16 @@
+using AutoMapper;
+
+namespace Bit.Infrastructure.EntityFramework.Models
+{
+ public class TaxRate : Core.Entities.TaxRate
+ {
+ }
+
+ public class TaxRateMapperProfile : Profile
+ {
+ public TaxRateMapperProfile()
+ {
+ CreateMap().ReverseMap();
+ }
+ }
+}
diff --git a/src/Core/Models/EntityFramework/Transaction.cs b/src/Infrastructure.EntityFramework/Models/Transaction.cs
similarity index 51%
rename from src/Core/Models/EntityFramework/Transaction.cs
rename to src/Infrastructure.EntityFramework/Models/Transaction.cs
index 820f8091b9..b9d4bc954d 100644
--- a/src/Core/Models/EntityFramework/Transaction.cs
+++ b/src/Infrastructure.EntityFramework/Models/Transaction.cs
@@ -1,10 +1,8 @@
-using System.Collections.Generic;
-using System.Text.Json;
-using AutoMapper;
+using AutoMapper;
-namespace Bit.Core.Models.EntityFramework
+namespace Bit.Infrastructure.EntityFramework.Models
{
- public class Transaction : Table.Transaction
+ public class Transaction : Core.Entities.Transaction
{
public virtual Organization Organization { get; set; }
public virtual User User { get; set; }
@@ -14,7 +12,7 @@ namespace Bit.Core.Models.EntityFramework
{
public TransactionMapperProfile()
{
- CreateMap().ReverseMap();
+ CreateMap().ReverseMap();
}
}
}
diff --git a/src/Infrastructure.EntityFramework/Models/U2f.cs b/src/Infrastructure.EntityFramework/Models/U2f.cs
new file mode 100644
index 0000000000..fea13b3b93
--- /dev/null
+++ b/src/Infrastructure.EntityFramework/Models/U2f.cs
@@ -0,0 +1,17 @@
+using AutoMapper;
+
+namespace Bit.Infrastructure.EntityFramework.Models
+{
+ public class U2f : Core.Entities.U2f
+ {
+ public virtual User User { get; set; }
+ }
+
+ public class U2fMapperProfile : Profile
+ {
+ public U2fMapperProfile()
+ {
+ CreateMap().ReverseMap();
+ }
+ }
+}
diff --git a/src/Core/Models/EntityFramework/User.cs b/src/Infrastructure.EntityFramework/Models/User.cs
similarity index 82%
rename from src/Core/Models/EntityFramework/User.cs
rename to src/Infrastructure.EntityFramework/Models/User.cs
index 1836bec44f..cf9834260c 100644
--- a/src/Core/Models/EntityFramework/User.cs
+++ b/src/Infrastructure.EntityFramework/Models/User.cs
@@ -1,10 +1,9 @@
using System.Collections.Generic;
-using System.Text.Json;
using AutoMapper;
-namespace Bit.Core.Models.EntityFramework
+namespace Bit.Infrastructure.EntityFramework.Models
{
- public class User : Table.User
+ public class User : Core.Entities.User
{
public virtual ICollection Ciphers { get; set; }
public virtual ICollection Folders { get; set; }
@@ -20,7 +19,7 @@ namespace Bit.Core.Models.EntityFramework
{
public UserMapperProfile()
{
- CreateMap().ReverseMap();
+ CreateMap().ReverseMap();
}
}
}
diff --git a/src/Core/Repositories/EntityFramework/BaseEntityFrameworkRepository.cs b/src/Infrastructure.EntityFramework/Repositories/BaseEntityFrameworkRepository.cs
similarity index 96%
rename from src/Core/Repositories/EntityFramework/BaseEntityFrameworkRepository.cs
rename to src/Infrastructure.EntityFramework/Repositories/BaseEntityFrameworkRepository.cs
index 2e842fbc96..8ab5bac619 100644
--- a/src/Core/Repositories/EntityFramework/BaseEntityFrameworkRepository.cs
+++ b/src/Infrastructure.EntityFramework/Repositories/BaseEntityFrameworkRepository.cs
@@ -6,14 +6,15 @@ using System.Threading.Tasks;
using AutoMapper;
using Bit.Core.Enums;
using Bit.Core.Enums.Provider;
-using Bit.Core.Models.Table;
-using Bit.Core.Repositories.EntityFramework.Queries;
+using Bit.Infrastructure.EntityFramework.Models;
+using Bit.Infrastructure.EntityFramework.Repositories.Queries;
using LinqToDB.Data;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;
-using EfModel = Bit.Core.Models.EntityFramework;
+using Cipher = Bit.Core.Entities.Cipher;
+using User = Bit.Core.Entities.User;
-namespace Bit.Core.Repositories.EntityFramework
+namespace Bit.Infrastructure.EntityFramework.Repositories
{
public abstract class BaseEntityFrameworkRepository
{
@@ -129,7 +130,7 @@ namespace Bit.Core.Repositories.EntityFramework
.ToListAsync();
var storage = attachments.Sum(e => JsonDocument.Parse(e)?.RootElement.EnumerateArray()
.Sum(p => p.GetProperty("Size").GetInt64()) ?? 0);
- var organization = new EfModel.Organization
+ var organization = new Organization
{
Id = organizationId,
RevisionDate = DateTime.UtcNow,
@@ -157,7 +158,7 @@ namespace Bit.Core.Repositories.EntityFramework
.ToListAsync();
var storage = attachments.Sum(e => JsonDocument.Parse(e)?.RootElement.EnumerateArray()
.Sum(p => p.GetProperty("Size").GetInt64()) ?? 0);
- var user = new EfModel.User
+ var user = new Models.User
{
Id = userId,
RevisionDate = DateTime.UtcNow,
diff --git a/src/Core/Repositories/EntityFramework/CipherRepository.cs b/src/Infrastructure.EntityFramework/Repositories/CipherRepository.cs
similarity index 91%
rename from src/Core/Repositories/EntityFramework/CipherRepository.cs
rename to src/Infrastructure.EntityFramework/Repositories/CipherRepository.cs
index 279637d450..f92d8abbc2 100644
--- a/src/Core/Repositories/EntityFramework/CipherRepository.cs
+++ b/src/Infrastructure.EntityFramework/Repositories/CipherRepository.cs
@@ -5,28 +5,27 @@ using System.Threading.Tasks;
using AutoMapper;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
-using Bit.Core.Repositories.EntityFramework.Queries;
+using Bit.Core.Repositories;
using Bit.Core.Utilities;
+using Bit.Infrastructure.EntityFramework.Models;
+using Bit.Infrastructure.EntityFramework.Repositories.Queries;
using Core.Models.Data;
-using LinqToDB.Data;
using LinqToDB.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
-using EfModel = Bit.Core.Models.EntityFramework;
-using TableModel = Bit.Core.Models.Table;
+using User = Bit.Core.Entities.User;
-namespace Bit.Core.Repositories.EntityFramework
+namespace Bit.Infrastructure.EntityFramework.Repositories
{
- public class CipherRepository : Repository, ICipherRepository
+ public class CipherRepository : Repository, ICipherRepository
{
public CipherRepository(IServiceScopeFactory serviceScopeFactory, IMapper mapper)
: base(serviceScopeFactory, mapper, (DatabaseContext context) => context.Ciphers)
{ }
- public override async Task CreateAsync(Cipher cipher)
+ public override async Task CreateAsync(Core.Entities.Cipher cipher)
{
cipher = await base.CreateAsync(cipher);
using (var scope = ServiceScopeFactory.CreateScope())
@@ -44,7 +43,7 @@ namespace Bit.Core.Repositories.EntityFramework
return cipher;
}
- public IQueryable GetBumpedAccountsByCipherId(Cipher cipher)
+ public IQueryable GetBumpedAccountsByCipherId(Core.Entities.Cipher cipher)
{
using (var scope = ServiceScopeFactory.CreateScope())
{
@@ -54,13 +53,13 @@ namespace Bit.Core.Repositories.EntityFramework
}
}
- public async Task CreateAsync(Cipher cipher, IEnumerable collectionIds)
+ public async Task CreateAsync(Core.Entities.Cipher cipher, IEnumerable collectionIds)
{
cipher = await base.CreateAsync(cipher);
await UpdateCollections(cipher, collectionIds);
}
- private async Task UpdateCollections(Cipher cipher, IEnumerable collectionIds)
+ private async Task UpdateCollections(Core.Entities.Cipher cipher, IEnumerable collectionIds)
{
using (var scope = ServiceScopeFactory.CreateScope())
{
@@ -91,7 +90,7 @@ namespace Bit.Core.Repositories.EntityFramework
cipher.Folders = cipher.FolderId.HasValue ?
$"{{{userIdKey}:\"{cipher.FolderId}\"}}" :
null;
- var entity = Mapper.Map((TableModel.Cipher)cipher);
+ var entity = Mapper.Map((Core.Entities.Cipher)cipher);
await dbContext.AddAsync(entity);
await dbContext.SaveChangesAsync();
}
@@ -105,7 +104,7 @@ namespace Bit.Core.Repositories.EntityFramework
await UpdateCollections(cipher, collectionIds);
}
- public async Task CreateAsync(IEnumerable ciphers, IEnumerable folders)
+ public async Task CreateAsync(IEnumerable ciphers, IEnumerable folders)
{
if (!ciphers.Any())
{
@@ -115,15 +114,15 @@ namespace Bit.Core.Repositories.EntityFramework
using (var scope = ServiceScopeFactory.CreateScope())
{
var dbContext = GetDatabaseContext(scope);
- var folderEntities = Mapper.Map>(folders);
+ var folderEntities = Mapper.Map>(folders);
await dbContext.BulkCopyAsync(base.DefaultBulkCopyOptions, folderEntities);
- var cipherEntities = Mapper.Map>(ciphers);
+ var cipherEntities = Mapper.Map>(ciphers);
await dbContext.BulkCopyAsync(base.DefaultBulkCopyOptions, cipherEntities);
await UserBumpAccountRevisionDateByCipherId(ciphers);
}
}
- public async Task CreateAsync(IEnumerable ciphers, IEnumerable collections, IEnumerable collectionCiphers)
+ public async Task CreateAsync(IEnumerable ciphers, IEnumerable collections, IEnumerable collectionCiphers)
{
if (!ciphers.Any())
{
@@ -132,16 +131,16 @@ namespace Bit.Core.Repositories.EntityFramework
using (var scope = ServiceScopeFactory.CreateScope())
{
var dbContext = GetDatabaseContext(scope);
- var cipherEntities = Mapper.Map>(ciphers);
+ var cipherEntities = Mapper.Map>(ciphers);
await dbContext.BulkCopyAsync(base.DefaultBulkCopyOptions, cipherEntities);
if (collections.Any())
{
- var collectionEntities = Mapper.Map>(collections);
+ var collectionEntities = Mapper.Map>(collections);
await dbContext.BulkCopyAsync(base.DefaultBulkCopyOptions, collectionEntities);
if (collectionCiphers.Any())
{
- var collectionCipherEntities = Mapper.Map>(collectionCiphers);
+ var collectionCipherEntities = Mapper.Map>(collectionCiphers);
await dbContext.BulkCopyAsync(base.DefaultBulkCopyOptions, collectionCipherEntities);
}
}
@@ -271,14 +270,14 @@ namespace Bit.Core.Repositories.EntityFramework
}
}
- public async Task> GetManyByOrganizationIdAsync(Guid organizationId)
+ public async Task> GetManyByOrganizationIdAsync(Guid organizationId)
{
using (var scope = ServiceScopeFactory.CreateScope())
{
var dbContext = GetDatabaseContext(scope);
var query = dbContext.Ciphers.Where(x => !x.UserId.HasValue && x.OrganizationId == organizationId);
var data = await query.ToListAsync();
- return Mapper.Map>(data);
+ return Mapper.Map>(data);
}
}
@@ -419,7 +418,7 @@ namespace Bit.Core.Repositories.EntityFramework
cipher.Favorites = JsonConvert.SerializeObject(folders);
}
}
- var mappedEntity = Mapper.Map((TableModel.Cipher)cipher);
+ var mappedEntity = Mapper.Map((Core.Entities.Cipher)cipher);
dbContext.Entry(entity).CurrentValues.SetValues(mappedEntity);
await UserBumpAccountRevisionDateByCipherId(cipher);
await dbContext.SaveChangesAsync();
@@ -427,7 +426,7 @@ namespace Bit.Core.Repositories.EntityFramework
}
}
- public async Task ReplaceAsync(Cipher obj, IEnumerable collectionIds)
+ public async Task ReplaceAsync(Core.Entities.Cipher obj, IEnumerable collectionIds)
{
await UpdateCollections(obj, collectionIds);
using (var scope = ServiceScopeFactory.CreateScope())
@@ -551,7 +550,7 @@ namespace Bit.Core.Repositories.EntityFramework
if (attachment.OrganizationId.HasValue)
{
await OrganizationUpdateStorage(cipher.OrganizationId.Value);
- await UserBumpAccountRevisionDateByCipherId(new List { cipher });
+ await UserBumpAccountRevisionDateByCipherId(new List { cipher });
}
else if (attachment.UserId.HasValue)
{
@@ -561,7 +560,7 @@ namespace Bit.Core.Repositories.EntityFramework
}
}
- public async Task UpdateCiphersAsync(Guid userId, IEnumerable ciphers)
+ public async Task UpdateCiphersAsync(Guid userId, IEnumerable ciphers)
{
if (!ciphers.Any())
{
@@ -570,7 +569,7 @@ namespace Bit.Core.Repositories.EntityFramework
using (var scope = ServiceScopeFactory.CreateScope())
{
var dbContext = GetDatabaseContext(scope);
- var entities = Mapper.Map>(ciphers);
+ var entities = Mapper.Map>(ciphers);
await dbContext.BulkCopyAsync(base.DefaultBulkCopyOptions, entities);
await UserBumpAccountRevisionDate(userId);
}
@@ -612,17 +611,17 @@ namespace Bit.Core.Repositories.EntityFramework
}
}
- public async Task UpdateUserKeysAndCiphersAsync(User user, IEnumerable ciphers, IEnumerable folders, IEnumerable sends)
+ public async Task UpdateUserKeysAndCiphersAsync(User user, IEnumerable ciphers, IEnumerable folders, IEnumerable sends)
{
using (var scope = ServiceScopeFactory.CreateScope())
{
var dbContext = GetDatabaseContext(scope);
await UserUpdateKeys(user);
- var cipherEntities = Mapper.Map>(ciphers);
+ var cipherEntities = Mapper.Map>(ciphers);
await dbContext.BulkCopyAsync(base.DefaultBulkCopyOptions, cipherEntities);
- var folderEntities = Mapper.Map>(folders);
+ var folderEntities = Mapper.Map>(folders);
await dbContext.BulkCopyAsync(base.DefaultBulkCopyOptions, folderEntities);
- var sendEntities = Mapper.Map>(sends);
+ var sendEntities = Mapper.Map>(sends);
await dbContext.BulkCopyAsync(base.DefaultBulkCopyOptions, sendEntities);
await dbContext.SaveChangesAsync();
}
diff --git a/src/Core/Repositories/EntityFramework/CollectionCipherRepository.cs b/src/Infrastructure.EntityFramework/Repositories/CollectionCipherRepository.cs
similarity index 95%
rename from src/Core/Repositories/EntityFramework/CollectionCipherRepository.cs
rename to src/Infrastructure.EntityFramework/Repositories/CollectionCipherRepository.cs
index e7f958008e..93f7180e77 100644
--- a/src/Core/Repositories/EntityFramework/CollectionCipherRepository.cs
+++ b/src/Infrastructure.EntityFramework/Repositories/CollectionCipherRepository.cs
@@ -4,13 +4,13 @@ using System.Linq;
using System.Threading.Tasks;
using AutoMapper;
using Bit.Core.Enums;
-using Bit.Core.Models.Table;
-using Bit.Core.Repositories.EntityFramework.Queries;
+using Bit.Core.Repositories;
+using Bit.Infrastructure.EntityFramework.Repositories.Queries;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;
-using EfModel = Bit.Core.Models.EntityFramework;
+using CollectionCipher = Bit.Core.Entities.CollectionCipher;
-namespace Bit.Core.Repositories.EntityFramework
+namespace Bit.Infrastructure.EntityFramework.Repositories
{
public class CollectionCipherRepository : BaseEntityFrameworkRepository, ICollectionCipherRepository
{
@@ -23,7 +23,7 @@ namespace Bit.Core.Repositories.EntityFramework
using (var scope = ServiceScopeFactory.CreateScope())
{
var dbContext = GetDatabaseContext(scope);
- var entity = Mapper.Map(obj);
+ var entity = Mapper.Map(obj);
dbContext.Add(entity);
await dbContext.SaveChangesAsync();
var organizationId = (await dbContext.Ciphers.FirstOrDefaultAsync(c => c.Id.Equals(obj.CipherId))).OrganizationId;
@@ -122,14 +122,14 @@ namespace Bit.Core.Repositories.EntityFramework
var union = merge1.Union(merge2).Distinct();
var insert = union
.Where(x => x.t == null && collectionIds.Contains(x.s.CollectionId))
- .Select(x => new EfModel.CollectionCipher
+ .Select(x => new Models.CollectionCipher
{
CollectionId = x.s.CollectionId,
CipherId = x.s.CipherId,
});
var delete = union
.Where(x => x.s == null && x.t.CipherId == cipherId && collectionIds.Contains(x.t.CollectionId))
- .Select(x => new EfModel.CollectionCipher
+ .Select(x => new Models.CollectionCipher
{
CollectionId = x.t.CollectionId,
CipherId = x.t.CipherId,
@@ -172,14 +172,14 @@ namespace Bit.Core.Repositories.EntityFramework
var union = merge1.Union(merge2).Distinct();
var insert = union
.Where(x => x.t == null && collectionIds.Contains(x.s.CollectionId))
- .Select(x => new EfModel.CollectionCipher
+ .Select(x => new Models.CollectionCipher
{
CollectionId = x.s.CollectionId,
CipherId = x.s.CipherId,
});
var delete = union
.Where(x => x.s == null && x.t.CipherId == cipherId)
- .Select(x => new EfModel.CollectionCipher
+ .Select(x => new Models.CollectionCipher
{
CollectionId = x.t.CollectionId,
CipherId = x.t.CipherId,
@@ -229,7 +229,7 @@ namespace Bit.Core.Repositories.EntityFramework
var insertData = from collectionId in collectionIds
from cipherId in cipherIds
where availibleCollections.Select(x => x.c.Id).Contains(collectionId)
- select new EfModel.CollectionCipher
+ select new Models.CollectionCipher
{
CollectionId = collectionId,
CipherId = cipherId,
diff --git a/src/Core/Repositories/EntityFramework/CollectionRepository.cs b/src/Infrastructure.EntityFramework/Repositories/CollectionRepository.cs
similarity index 89%
rename from src/Core/Repositories/EntityFramework/CollectionRepository.cs
rename to src/Infrastructure.EntityFramework/Repositories/CollectionRepository.cs
index 7be9c5fecc..c0109cec83 100644
--- a/src/Core/Repositories/EntityFramework/CollectionRepository.cs
+++ b/src/Infrastructure.EntityFramework/Repositories/CollectionRepository.cs
@@ -4,29 +4,28 @@ using System.Linq;
using System.Threading.Tasks;
using AutoMapper;
using Bit.Core.Models.Data;
-using Bit.Core.Models.Table;
-using Bit.Core.Repositories.EntityFramework.Queries;
+using Bit.Core.Repositories;
+using Bit.Infrastructure.EntityFramework.Models;
+using Bit.Infrastructure.EntityFramework.Repositories.Queries;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;
-using EfModel = Bit.Core.Models.EntityFramework;
-using TableModel = Bit.Core.Models.Table;
-namespace Bit.Core.Repositories.EntityFramework
+namespace Bit.Infrastructure.EntityFramework.Repositories
{
- public class CollectionRepository : Repository, ICollectionRepository
+ public class CollectionRepository : Repository, ICollectionRepository
{
public CollectionRepository(IServiceScopeFactory serviceScopeFactory, IMapper mapper)
: base(serviceScopeFactory, mapper, (DatabaseContext context) => context.Collections)
{ }
- public override async Task CreateAsync(Collection obj)
+ public override async Task CreateAsync(Core.Entities.Collection obj)
{
await base.CreateAsync(obj);
await UserBumpAccountRevisionDateByCollectionId(obj.Id, obj.OrganizationId);
return obj;
}
- public async Task CreateAsync(Collection obj, IEnumerable groups)
+ public async Task CreateAsync(Core.Entities.Collection obj, IEnumerable groups)
{
await base.CreateAsync(obj);
using (var scope = ServiceScopeFactory.CreateScope())
@@ -37,7 +36,7 @@ namespace Bit.Core.Repositories.EntityFramework
select g.Id).ToListAsync();
var collectionGroups = groups
.Where(g => availibleGroups.Contains(g.Id))
- .Select(g => new EfModel.CollectionGroup
+ .Select(g => new CollectionGroup
{
CollectionId = obj.Id,
GroupId = g.Id,
@@ -74,7 +73,7 @@ namespace Bit.Core.Repositories.EntityFramework
}
}
- public async Task>> GetByIdWithGroupsAsync(Guid id)
+ public async Task>> GetByIdWithGroupsAsync(Guid id)
{
var collection = await base.GetByIdAsync(id);
using (var scope = ServiceScopeFactory.CreateScope())
@@ -89,7 +88,7 @@ namespace Bit.Core.Repositories.EntityFramework
ReadOnly = cg.ReadOnly,
HidePasswords = cg.HidePasswords,
}).ToList();
- return new Tuple>(collection, selectionReadOnlys);
+ return new Tuple>(collection, selectionReadOnlys);
}
}
@@ -118,7 +117,7 @@ namespace Bit.Core.Repositories.EntityFramework
return await GetCountFromQuery(query);
}
- public async Task> GetManyByOrganizationIdAsync(Guid organizationId)
+ public async Task