24 lines
1.0 KiB
C#
24 lines
1.0 KiB
C#
using _0_Framework.Application;
|
|
using Company.Domain.ContarctingPartyAgg;
|
|
using Company.Domain.TemporaryClientRegistrationAgg;
|
|
using CompanyManagment.App.Contracts.TemporaryClientRegistration;
|
|
|
|
namespace CompanyManagment.Application;
|
|
|
|
public class TemporaryClientRegistrationApplication : ITemporaryClientRegistrationApplication
|
|
{
|
|
private readonly IContractingPartyTempRepository _contractingPartyTempRepository;
|
|
private readonly IPersonalContractingPartyRepository _personalContractingPartyRepository;
|
|
|
|
public TemporaryClientRegistrationApplication(IContractingPartyTempRepository contractingPartyTempRepository, IPersonalContractingPartyRepository personalContractingPartyRepository)
|
|
{
|
|
_contractingPartyTempRepository = contractingPartyTempRepository;
|
|
_personalContractingPartyRepository = personalContractingPartyRepository;
|
|
}
|
|
|
|
public OperationResult CreateContractingPartyTemp(CreateContractingPartyTemp command)
|
|
{
|
|
|
|
throw new System.NotImplementedException();
|
|
}
|
|
} |