-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* psp-7909 take ui refactor. * psp-8145 * correct invalid type. * code review corrections. * merge corrections.
- Loading branch information
1 parent
11d9656
commit 5a15dcd
Showing
38 changed files
with
4,652 additions
and
994 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,24 @@ | ||
using System.Collections.Generic; | ||
using Pims.Dal.Entities; | ||
using Pims.Dal.Exceptions; | ||
|
||
namespace Pims.Api.Services | ||
{ | ||
public interface ITakeService | ||
{ | ||
|
||
PimsTake GetById(long takeId); | ||
|
||
PimsTake AddAcquisitionPropertyTake(long acquisitionFilePropertyId, PimsTake take); | ||
|
||
PimsTake UpdateAcquisitionPropertyTake(long acquisitionFilePropertyId, PimsTake take); | ||
|
||
bool DeleteAcquisitionPropertyTake(long takeId, IEnumerable<UserOverrideCode> userOverrides); | ||
|
||
IEnumerable<PimsTake> GetByFileId(long fileId); | ||
|
||
IEnumerable<PimsTake> GetByPropertyId(long fileId, long acquisitionFilePropertyId); | ||
|
||
int GetCountByPropertyId(long propertyId); | ||
|
||
IEnumerable<PimsTake> UpdateAcquisitionPropertyTakes(long acquisitionFilePropertyId, IEnumerable<PimsTake> takes); | ||
} | ||
} |
Oops, something went wrong.