Skip to content

Instantly share code, notes, and snippets.

@samilamti
Created March 30, 2013 09:21
Show Gist options
  • Save samilamti/5276066 to your computer and use it in GitHub Desktop.
Save samilamti/5276066 to your computer and use it in GitHub Desktop.
Abstraction over the Azure Mobile Services MobileServiceTable class.
using System.Collections.Generic;
using System.Threading.Tasks;
namespace NinjaLocator.Core
{
public interface IMobileServiceTable<T>
{
Task InsertAsync(T entity);
Task<IEnumerable<T>> ReadAsync();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment