Example #1
0
        public void Arrange()
        {
            _query = new GetLastSignedAgreementRequest
            {
            };

            _validator = new GetLastSignedAgreementQueryValidator();
        }
        public GetLastSignedAgreementRequest BuildRequest(long accountLegalEntityId)
        {
            var request = new GetLastSignedAgreementRequest
            {
                AccountLegalEntityId = accountLegalEntityId
            };

            return(request);
        }