Exemple #1
0
        public void AddCustomer(CustomerModel customerModel)
        {
            Customer customer = new Customer();

            customer.CustomerName        = customerModel.CustomerName;
            customer.Operator            = new Operator();
            customer.Operator.OperatorId = customerModel.OperatorId.OperatorId;
            Business busines = new Business();

            busines.AddCustomer(customer);
        }