Exemple #1
0
 /// <summary>
 /// One-argument constructor initializing the diet repository
 /// </summary>
 /// <param name="dietRepo">the given value for the diet repo</param>
 public DietSocket(IDietRepo dietRepo)
 {
     this.dietRepo = dietRepo;
 }
Exemple #2
0
 public DietController(IDietRepo context)
 {
     _context = context;
 }