2023-08-31 18:00:51 -05:00
|
|
|
|
using DamageAssesment.Api.Documents.Models;
|
|
|
|
|
|
|
|
|
|
namespace DamageAssesment.Api.Documents.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IDocumentsProvider : ILinkTypesProvider
|
|
|
|
|
{
|
2023-09-13 15:49:59 -05:00
|
|
|
|
Task<(bool IsSuccess, Models.MultiLanDocument Document, string ErrorMessage)> GetDocumentAsync(int id, string? linktype, string? language);
|
2023-09-11 12:23:50 -05:00
|
|
|
|
Task<(bool IsSuccess, Models.Document Document, string ErrorMessage)> GetDocumentByidAsync(int id);
|
2023-09-13 15:49:59 -05:00
|
|
|
|
// Task<(bool IsSuccess, IEnumerable<Models.MultiLanDocument> documents, string ErrorMessage)> GetDocumnetsAsync(string? language);
|
|
|
|
|
Task<(bool IsSuccess, IEnumerable<Models.MultiLanDocument> documents, string ErrorMessage)> GetdocumentsByLinkAsync(string? linkType, string? language);
|
2023-09-11 12:23:50 -05:00
|
|
|
|
Task<(bool IsSuccess, Models.MultiLanDocument Document, string ErrorMessage)> PostDocumentAsync(Models.Document Document);
|
|
|
|
|
Task<(bool IsSuccess, Models.MultiLanDocument Document, string ErrorMessage)> UpdateDocumentAsync(int id,Models.Document Document);
|
|
|
|
|
Task<(bool IsSuccess, Models.MultiLanDocument Document, string ErrorMessage)> DeleteDocumentAsync(int id);
|
2023-08-31 18:00:51 -05:00
|
|
|
|
Task<(bool IsSuccess, int counter, string message)> GetDocumentCounter();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|