| 123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Xamarin.Forms;
- using Xamarin.Forms.Xaml;
- namespace PRS.Mobile
- {
- public interface ISitePage
- {
- JobShell Job { get; }
- }
- [XamlCompilation(XamlCompilationOptions.Compile)]
- public abstract partial class SitePage : ISitePage
- {
- public JobShell Job { get; private set; }
-
- public SitePage(JobShell job)
- {
- Job = job;
- InitializeComponent();
- }
-
- }
- }
|