Skip to content

Commit

Permalink
Add IObject compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraser Greenroyd committed Jun 21, 2023
1 parent 921ab0f commit 4dfde6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
7 changes: 2 additions & 5 deletions SQL_oM/Requests/ISingleTableRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@
*/

using BH.oM.Adapter;
using BH.oM.Base;
using BH.oM.Data.Requests;
using System;

namespace BH.oM.Adapters.SQL
{
public interface ISingleTableRequest
public interface ISingleTableRequest : IObject
{
/***************************************************/
/**** Properties ****/
Expand All @@ -37,7 +38,3 @@ public interface ISingleTableRequest
/***************************************************/
}
}




7 changes: 2 additions & 5 deletions SQL_oM/Requests/ITypeStrongRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@
*/

using BH.oM.Adapter;
using BH.oM.Base;
using BH.oM.Data.Requests;
using System;

namespace BH.oM.Adapters.SQL
{
public interface ITypeStrongRequest
public interface ITypeStrongRequest : IObject
{
/***************************************************/
/**** Properties ****/
Expand All @@ -37,7 +38,3 @@ public interface ITypeStrongRequest
/***************************************************/
}
}




0 comments on commit 4dfde6e

Please sign in to comment.