Exemplo n.º 1
0
 public static Task <CatchFormPage> CreateAsync(CatchesListPage caller, FishingTrip fishingTrip)
 {
     return(CreateAsync(caller, fishingTrip, new Catch()));
 }
Exemplo n.º 2
0
        public static Task <CatchFormPage> CreateAsync(CatchesListPage caller, FishingTrip fishingTrip, Catch _catch)
        {
            CatchFormPage instance = new CatchFormPage(caller, fishingTrip, _catch);

            return(instance.InitializeAsync());
        }
Exemplo n.º 3
0
 public CatchFormPage(CatchesListPage caller, FishingTrip fishingTrip, Catch _catch)
 {
     Caller = caller;
     SetBindingContext(fishingTrip, _catch);
     InitializeComponent();
 }