public List <ContractViewModel> GetAllContractsByCustomerId(int customerId)
        {
            List <ContractViewModel> contracts = _provider.GetAllContractsByCustomerId(customerId);

            return(contracts);
        }