public async Task <EmailModel> Get(int id)
        {
            var email = await _emailComponent.Get(id);

            return(email);
        }