public async Task <WrapperSimpleTypesDTO> VerificarSiEmailYaExiste(Usuarios emailParaVerificar)
        {
            using (SportsGoEntities context = new SportsGoEntities(false))
            {
                AuthenticateRepository authenticateRepo   = new AuthenticateRepository(context);
                WrapperSimpleTypesDTO  wrapperExisteEmail = await authenticateRepo.VerificarSiEmailYaExiste(emailParaVerificar);

                return(wrapperExisteEmail);
            }
        }
        public async Task AuthenticateRepository_VerificarSiEmailYaExiste_ShouldVerify()
        {
            using (SportsGoEntities context = new SportsGoEntities(false))
            {
                AuthenticateRepository authenticateRepo = new AuthenticateRepository(context);
                Usuarios usuarioParaCrear = new Usuarios
                {
                    Email = "*****@*****.**"
                };

                WrapperSimpleTypesDTO wrapperExisteEmail = await authenticateRepo.VerificarSiEmailYaExiste(usuarioParaCrear);

                Assert.IsNotNull(wrapperExisteEmail);
                Assert.IsTrue(wrapperExisteEmail.Existe);
                Assert.AreNotEqual(wrapperExisteEmail.NumeroRegistrosAfectados, 0);
            }
        }