Example #1
0
        async Task ResetFCMTokenAsync(object sender, EventArgs e)
        {
            //  await FCMService.DeleteFCMTokenAsync();

            WebPortalApiServices wapi = new WebPortalApiServices();
            await wapi.SendFCMTokenAsync();
        }
Example #2
0
 public AuthVM()
 {
     canvasView        = new SKCanvasView();
     _portalApiService = new WebPortalApiServices();
     SigningInCommand  = new Command(SigningIn);
     RegisterCommand   = new Command(Register);
     LogOutCommand     = new Command(async() => await LogOut());
 }
Example #3
0
        public AuthVM(INavigation HomePageNav, Context context)
        {
            canvasView = new SKCanvasView();

            _portalApiService = new WebPortalApiServices();
            _context          = context;
            Navigation        = HomePageNav;
        }