public IHttpActionResult Kontrol(int kullaniciId, int doktorId, DateTime tarih)
        {
            RandevuBLL randevuBusiness = new RandevuBLL();
            var        test            = randevuBusiness.CheckSameDoctor(kullaniciId, doktorId, tarih);

            if (test)
            {
                return(Ok());
            }
            else
            {
                return(NotFound());
            }
        }