Exemplo n.º 1
0
        //Log In Check
        // POST api/<controller>
        public Tourist Post([FromBody] Tourist tourist)
        {
            Tourist t = new Tourist();

            return(t.LogIn(tourist));
        }