NewPurchase.xaml.cs 730 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using Xamarin.Forms;
  4. namespace comal.timesheets
  5. {
  6. public partial class NewPurchase
  7. {
  8. public NewPurchase()
  9. {
  10. InitializeComponent();
  11. }
  12. void SavePurch_Clicked(System.Object sender, System.EventArgs e)
  13. {
  14. }
  15. void Notes_TextChanged(System.Object sender, Xamarin.Forms.TextChangedEventArgs e)
  16. {
  17. }
  18. private void SelectJob_Clicked(object sender, EventArgs e)
  19. {
  20. throw new NotImplementedException();
  21. }
  22. private void Title_TextChanged(object sender, TextChangedEventArgs e)
  23. {
  24. throw new NotImplementedException();
  25. }
  26. }
  27. }