public ChildrensService(TrackerDbContext context) : base(context)
 {
 }
Exemple #2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="context"></param>
 /// <param name="entity">Entity to be used at the top of the select list.</param>
 public Repository(TrackerDbContext context)
 {
     _context = context;
 }
Exemple #3
0
 public RecordsService(TrackerDbContext context, PeriodsService periodsService, ChildrensService childrensService) : base(context)
 {
     _periodsService   = periodsService;
     _childrensService = childrensService;
 }