public ApiCustomerModel Get(int CustomerId)
        {
            ApiCustomerModel customer = new ApiCustomerModel
            {
            };

            return(customer);
        }
        public List <ApiCustomerModel> GetList()
        {
            List <ApiCustomerModel> customerList = new List <ApiCustomerModel>();

            ApiCustomerModel customer1 = new ApiCustomerModel
            {
            };

            ApiCustomerModel customer2 = new ApiCustomerModel
            {
            };

            customerList.Add(customer1);
            customerList.Add(customer2);

            return(customerList);
        }