Skip to content

Commit 9c70486

Browse files
committed
Fixed namespaces and XML-docs for ProcessEngine.Model
1 parent 9af6a64 commit 9c70486

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

src/Moryx.ControlSystem.ProcessEngine/Model/NpgsqlProcessContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
namespace Moryx.ControlSystem.ProcessEngine.Model
88
{
99
/// <summary>
10-
/// The Npgsql DbContext of this database model.
10+
/// Npgsql specific implementation of <see cref="ProcessContext"/>
1111
/// </summary>
1212
[NpgsqlDbContext(typeof(ProcessContext))]
1313
public class NpgsqlProcessContext : ProcessContext

src/Moryx.ControlSystem.ProcessEngine/Model/ProcessContext.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33

44
using Microsoft.EntityFrameworkCore;
55
using Moryx.Model;
6+
7+
// ReSharper disable UnusedMember.Global
68
// ReSharper disable VirtualMemberNeverOverridden.Global
9+
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
710

811
namespace Moryx.ControlSystem.ProcessEngine.Model
912
{

src/Moryx.ControlSystem.ProcessEngine/Model/SqliteProcessContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
namespace Moryx.ControlSystem.ProcessEngine.Model
88
{
99
/// <summary>
10-
/// The Sqlite DbContext of this database model.
10+
/// Sqlite specific implementation of <see cref="ProcessContext"/>
1111
/// </summary>
1212
[SqliteDbContext(typeof(ProcessContext))]
1313
public class SqliteProcessContext : ProcessContext

0 commit comments

Comments
 (0)