Esempio n. 1
0
        public async Task <bool> SendAsync(ContactMessageVm contactMessage)
        {
            if (!CrossConnectivity.Current.IsConnected)
            {
                throw new Exception("Você está sem conexão com a internet");
            }

            var jsonObject = JsonConvert.SerializeObject(contactMessage);

            var response = await HttpClient.PostAsync($"{UrlService}/contact/send", new StringContent(jsonObject, Encoding.UTF8, "application/json"));

            if (response.IsSuccessStatusCode && response.StatusCode == HttpStatusCode.OK)
            {
                var json = await response.Content.ReadAsStringAsync();

                var isEmailSend = JsonConvert.DeserializeObject <bool>(json);
                if (isEmailSend)
                {
                    return(true);
                }
            }

            var errors = await response.Content.ReadAsStringAsync();

            throw new Exception(errors);
        }
Esempio n. 2
0
        public async Task <bool> SendAsync(ContactMessageVm contactMessage)
        {
            var service = new ContactRest();

            return(await service.SendAsync(contactMessage));
        }