From 9e1ae1171bc086e315d8051d5d909a833bfa4315 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Wed, 3 Mar 2021 11:44:48 +0300 Subject: [PATCH] Inherit ApplyDatabaseMigrationsEto from EtoBase --- .../Volo.Abp.Data/Volo/Abp/Data/ApplyDatabaseMigrationsEto.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/framework/src/Volo.Abp.Data/Volo/Abp/Data/ApplyDatabaseMigrationsEto.cs b/framework/src/Volo.Abp.Data/Volo/Abp/Data/ApplyDatabaseMigrationsEto.cs index be31bbe74f..86c2003aad 100644 --- a/framework/src/Volo.Abp.Data/Volo/Abp/Data/ApplyDatabaseMigrationsEto.cs +++ b/framework/src/Volo.Abp.Data/Volo/Abp/Data/ApplyDatabaseMigrationsEto.cs @@ -1,11 +1,12 @@ using System; +using Volo.Abp.Domain.Entities.Events.Distributed; using Volo.Abp.EventBus; namespace Volo.Abp.Data { [Serializable] [EventName("abp.data.apply_database_migrations")] - public class ApplyDatabaseMigrationsEto + public class ApplyDatabaseMigrationsEto : EtoBase { public Guid? TenantId { get; set; }