public void CreateContractByCustomerId(int customerId, string description)
        {
            ContractViewModel contract = new ContractViewModel
            {
                ContractStatus = "In behandeling",
                Description    = description,
                LastUpdate     = DateTime.Now
            };

            _provider.CreateContractByCustomerId(customerId, contract);
        }