Created
December 9, 2018 13:57
-
-
Save subhendu-de/b7ae45179cb84a54ab82b3000c7d419b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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