Exemple #1
0
        //JİRADAN TOTALVALUE DEĞERİNİ ÇEK
        private int GetTotalValue()
        {
            string response = _jiraRequestService.GetTotal();
            Total  total    = JsonConvert.DeserializeObject <Total>(response);

            int totalValue = total.total;

            return(totalValue);
        }