public LoginViewModel() : base()
        {
            this.LoginCommand    = new Command(this.Login);
            this.RegisterCommand = new Command(this.Register);

            this._loginService = DependencyService.Get <Business.ILoginService> ();
        }
        public LoginViewModel()
            : base()
        {
            this.LoginCommand = new Command (this.Login);
            this.RegisterCommand = new Command (this.Register);

            this._loginService = DependencyService.Get<Business.ILoginService> ();
        }