Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created April 28, 2018 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icebeam7/447daa78f27213cb12a2f33fe88028e1 to your computer and use it in GitHub Desktop.
Save icebeam7/447daa78f27213cb12a2f33fe88028e1 to your computer and use it in GitHub Desktop.
FaceLoginApp: IServicioBaseDatos.cs
using System.Threading.Tasks;
using FaceLoginApp.Modelos;
namespace FaceLoginApp.Servicios
{
public interface IServicioBaseDatos
{
Task<Usuario> ObtenerUsuario(string key);
Task<bool> RegistrarUsuario(Usuario dato);
Task<bool> ActualizarUsuario(Usuario dato);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment