Example #1
0
 public WeightBLL()
 {
     this.repo = new InsertUpdateDeleteRepository <HomeUseTrackingEntities>(new HomeUseTrackingEntities());
 }
Example #2
0
 public WeightBLL(IInsertUpdateDeleteRepository repo)
 {
     this.repo = repo;
 }
Example #3
0
 public CalorieCountOffDayBLL()
 {
     this.repo = new InsertUpdateDeleteRepository <HomeUseTrackingEntities>(new HomeUseTrackingEntities());
 }
Example #4
0
 public CalorieCountBLL(IInsertUpdateDeleteRepository repo)
 {
     this.repo = repo;
 }
Example #5
0
 public IngredientBLL(IInsertUpdateDeleteRepository repo)
 {
     this.repo = repo;
 }