예제 #1
0
        // GET api/<controller>/5 //מקבלת מדריך ע"פ אימייל
        //[HttpGet]
        //[Route("api/GuideGetByEmail/{emailadress}")]
        public Guide Get(string email)
        {
            Guide g = new Guide();

            return(g.GetGuideByEmail(email));
        }