Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created October 22, 2018 22:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icebeam7/6dba869055cd536240711b26f0190ec9 to your computer and use it in GitHub Desktop.
Save icebeam7/6dba869055cd536240711b26f0190ec9 to your computer and use it in GitHub Desktop.
MyStore.EmployeesApp: CustomerOrderListPage.cs
using System;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
using MyStore.Models;
namespace MyStore.EmployeesApp.Pages
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class CustomerOrderListPage : ContentPage
{
public CustomerOrderListPage (CustomerDTO item)
{
InitializeComponent ();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment