Beispiel #1
0
        public async Task <bool> PopunjenCheck()
        {
            if (int.Parse(this.Broj()) >= 5)
            {
                SeminarREST service = new SeminarREST();

                this.Popunjen = true;

                await service.PutAsync(this);

                return(true);
            }
            else
            {
                return(false);
            }
        }