123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using Comal.Classes;
- using InABox.Clients;
- using InABox.Core;
- using InABox.Mobile;
- using Xamarin.Forms;
- namespace comal.timesheets
- {
- public partial class DigitalKeys : ContentPage
- {
- public DigitalKeys()
- {
- InitializeComponent();
- LoadData();
- }
- private void LoadData()
- {
- }
- protected override void OnAppearing()
- {
- base.OnAppearing();
- }
- void Items_Refreshing(System.Object sender, System.EventArgs e)
- {
- }
- void MaterialCard_Clicked(System.Object sender, System.EventArgs e)
- {
- }
- }
- }
|