Exemplo n.º 1
0
 public PageController()
 {
     weighInService = new WeighInService(new WeightTrackerEntities());
 }
Exemplo n.º 2
0
		public DashboardController()
		{
			weighInService = new WeighInService(new WeightTrackerEntities());
		}
Exemplo n.º 3
0
 public WeighInRepository(IWeighInService service)
 {
     _service = service;
 }