Skip to content

Instantly share code, notes, and snippets.

@subhendu-de
Created December 9, 2018 13:57
Show Gist options
  • Save subhendu-de/b7ae45179cb84a54ab82b3000c7d419b to your computer and use it in GitHub Desktop.
Save subhendu-de/b7ae45179cb84a54ab82b3000c7d419b to your computer and use it in GitHub Desktop.
using System;
using Microsoft.EntityFrameworkCore;
namespace eKart.Api.Model
{
public interface IDatasourceContext: IDisposable
{
DbSet Products{ get; set; }
int SaveChanges();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment