From 5a0b92a1ec02c7129aceccaa38972f1470f5e6d9 Mon Sep 17 00:00:00 2001 From: ngfrolov Date: Wed, 7 Dec 2022 12:20:24 +0500 Subject: [PATCH] ProcessMapRepository enable nullable --- AsbCloudInfrastructure/Repository/ProcessMapRepository.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AsbCloudInfrastructure/Repository/ProcessMapRepository.cs b/AsbCloudInfrastructure/Repository/ProcessMapRepository.cs index 24a6fb74..260fa925 100644 --- a/AsbCloudInfrastructure/Repository/ProcessMapRepository.cs +++ b/AsbCloudInfrastructure/Repository/ProcessMapRepository.cs @@ -11,6 +11,7 @@ using System.Threading.Tasks; namespace AsbCloudInfrastructure.Repository { +#nullable enable public class ProcessMapRepository : CrudWellRelatedServiceBase, IProcessMapRepository { @@ -100,4 +101,5 @@ namespace AsbCloudInfrastructure.Repository return dto; } } +#nullable disable } \ No newline at end of file