Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PersonController" /> class.
 /// </summary>
 /// <param name="repository">Received database data.</param>
 public PersonController(IFullInfoRepository repository)
 {
     _repository = repository;
 }
Beispiel #2
0
        /// <summary>
        /// Preparing objects of type <see cref="ServiceWSDL.Person" /> and invokes method <c>DoImport()</c> from <see cref="ServiceWSDL" /> for each of them.
        /// </summary>
        /// <param name="repository">Received database data.</param>
        public void DoImport(IFullInfoRepository repository)
        {
            ImportServiceClient client = new ImportServiceClient();

            foreach (var p in repository.PersonRepository.PersonList)
            {
                Models.Address        currentAddress        = repository.AddressRepository.AddressList.First(a => a.Id == p.AddressId);
                Models.Agreement      currentAgreement      = repository.AgreementRepository.AgreementList.First(a => a.PersonId == p.Id);
                Models.FinancialState currentFinancialState = repository.FinancialStateRepository.FinancialStateList.First(a => a.Id == currentAgreement.FinancialStateId);

                client.DoImport(new Person()
                {
                    Name      = p.FirstName,
                    Surname   = p.Surname,
                    Addresses = new Address[]
                    {
                        new Address()
                        {
                            AddressType = "Main",
                            City        = currentAddress.PostOfficeCity,
                            Street      = currentAddress.StreetName,
                            HouseNo     = currentAddress.StreetNumber,
                            LocaleNo    = currentAddress.FlatNumber,
                            PostalCode  = currentAddress.PostCode
                        },
                        new Address()
                        {
                            AddressType = "Correspondence",
                            City        = currentAddress.CorrespondencePostOfficeCity,
                            Street      = currentAddress.CorrespondenceStreetName,
                            HouseNo     = currentAddress.CorrespondenceStreetNumber,
                            LocaleNo    = currentAddress.CorrespondenceFlatNumber,
                            PostalCode  = currentAddress.CorrespondencePostCode
                        }
                    },
                    FinancialState = new FinancialState()
                    {
                        Capital                       = currentFinancialState.OutstandingLiabilities,
                        Interest                      = currentFinancialState.Interests,
                        PenaltyInterest               = currentFinancialState.PenaltyInterests,
                        Fees                          = currentFinancialState.Fees == null ? 0 : (decimal)currentFinancialState.Fees,
                        CourtFees                     = currentFinancialState.CourtFees,
                        CourtRepresentationFees       = currentFinancialState.RepresentationCourtFees == null ? 0 : (decimal)currentFinancialState.RepresentationCourtFees,
                        EnforcementFees               = currentFinancialState.VindicationCosts == null ? 0 : (decimal)currentFinancialState.VindicationCosts,
                        EnforcementRepresentationFees = currentFinancialState.RepresentationVindicationCosts == null ? 0 : (decimal)currentFinancialState.RepresentationVindicationCosts
                    },
                    NationalIdentificationNumber = p.NationalIdentificationNumber,
                    Phones = new Phone[]
                    {
                        //There is no properties to write in, for ServiceWSDL.Phone
                        new Phone()
                        {
                            //Phone 1
                        },
                        new Phone()
                        {
                            //Phone 2
                        }
                    },
                    IdentityDocuments = new IdentityDocument[]
                    {
                        new IdentityDocument()
                        {
                            Type           = "PESEL",
                            ExpirationDate = new DateTime(),
                            Number         = p.NationalIdentificationNumber
                        }
                    }
                });
            }
        }
Beispiel #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ExcelController" /> class.
 /// </summary>
 /// <param name="repository">Received database data</param>
 public ExcelController(IFullInfoRepository repository)
 {
     _repository = repository;
 }
 public UploadService(IFullInfoRepository repository)
 {
     _repository = repository;
 }
Beispiel #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ExcelHelper" /> class.
 /// </summary>
 /// <param name="repository">Received database data.</param>
 public ExcelHelper(IFullInfoRepository repository)
 {
     _repository = repository;
 }