chore: moves to ExpandoObject for updating entities because not all properties need to be part of the payload
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
using System.Dynamic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Novaloop.PaymoApi.Shared
|
||||
@@ -36,6 +37,6 @@ namespace Novaloop.PaymoApi.Shared
|
||||
/// <param name="entity">entity information to update the entity with</param>
|
||||
/// <param name="id">id of the entity to update</param>
|
||||
/// <returns></returns>
|
||||
Task Update( TCreatType entity, int id);
|
||||
Task Update(ExpandoObject entity, int id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user