Beispiel #1
0
 /// <summary>
 /// constructor
 /// </summary>
 /// <param name="Mapper"></param>
 /// <param name="Context"></param>
 public RecipeRepository(IMapper Mapper, IMySQLDataContext Context) : base(Mapper, Context)
 {
 }
Beispiel #2
0
 public RepositoryBase(IMapper Mapper, IMySQLDataContext Context)
 {
     this.Mapper = Mapper;
     _context    = Context;
 }