move model intterfaces to interfaces dir
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using DigitalData.Core.Exceptions;
|
||||
using EnvelopeGenerator.Application.Interfaces.Model;
|
||||
using EnvelopeGenerator.Extensions;
|
||||
|
||||
namespace EnvelopeGenerator.Application.Model;
|
||||
|
||||
@@ -1,21 +0,0 @@
|
||||
namespace EnvelopeGenerator.Application.Model;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public interface IHasEnvelopeQuery<TEnvelopeQuery>
|
||||
where TEnvelopeQuery : EnvelopeQueryBase
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public TEnvelopeQuery Envelope { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public interface IHasEnvelopeQuery
|
||||
: IHasEnvelopeQuery<EnvelopeQueryBase>
|
||||
{
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
namespace EnvelopeGenerator.Application.Model;
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public interface IHasReceiverQuery<TReceiverQuery>
|
||||
where TReceiverQuery : ReceiverQueryBase
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public TReceiverQuery Receiver { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public interface IHasReceiverQuery
|
||||
: IHasReceiverQuery<ReceiverQueryBase>
|
||||
{
|
||||
}
|
||||
@@ -15,5 +15,6 @@ public class MappingProfile : Profile
|
||||
{
|
||||
CreateMap<EnvelopeQueryBase, Envelope>();
|
||||
CreateMap<ReceiverQueryBase, Receiver>();
|
||||
CreateMap<EnvelopeReceiverQueryBase, EnvelopeReceiver>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user