42 lines
1.5 KiB
C#
42 lines
1.5 KiB
C#
using DigitalData.Core.Abstraction.Application.Repository;
|
|
using EnvelopeGenerator.Domain.Entities;
|
|
|
|
namespace EnvelopeGenerator.Application.Interfaces.Repositories;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[Obsolete("Use IRepository")]
|
|
public interface IEnvelopeRepository : ICRUDRepository<Envelope, int>
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="documents"></param>
|
|
/// <param name="history"></param>
|
|
/// <param name="documentReceiverElement"></param>
|
|
/// <returns></returns>
|
|
Task<IEnumerable<Envelope>> ReadAllWithAsync(bool documents = false, bool history = false, bool documentReceiverElement = false);
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="uuid"></param>
|
|
/// <param name="withDocuments"></param>
|
|
/// <param name="withHistory"></param>
|
|
/// <param name="withDocumentReceiverElement"></param>
|
|
/// <param name="withUser"></param>
|
|
/// <param name="withAll"></param>
|
|
/// <returns></returns>
|
|
Task<Envelope?> ReadByUuidAsync(string uuid, bool withDocuments = false, bool withHistory = false, bool withDocumentReceiverElement = false, bool withUser = false, bool withAll = false);
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="userId"></param>
|
|
/// <param name="min_status"></param>
|
|
/// <param name="max_status"></param>
|
|
/// <param name="ignore_statuses"></param>
|
|
/// <returns></returns>
|
|
Task<IEnumerable<Envelope>> ReadByUserAsync(int userId, int? min_status = null, int? max_status = null, params int[] ignore_statuses);
|
|
} |