ProcessMapRepository enable nullable

This commit is contained in:
ngfrolov 2022-12-07 12:20:24 +05:00
parent ae9ee705b0
commit 5a0b92a1ec

View File

@ -11,6 +11,7 @@ using System.Threading.Tasks;
namespace AsbCloudInfrastructure.Repository
{
#nullable enable
public class ProcessMapRepository : CrudWellRelatedServiceBase<ProcessMapDto, ProcessMap>,
IProcessMapRepository
{
@ -100,4 +101,5 @@ namespace AsbCloudInfrastructure.Repository
return dto;
}
}
#nullable disable
}