public PlanByOutletViewModel(OutletViewModel outletViewModel) { if (outletViewModel == null) { throw new ArgumentNullException(nameof(outletViewModel)); } this.OutletViewModel = outletViewModel; }
public OutletPlanIndicatorViewModel(OutletViewModel outletViewModel, PlanIndicatorViewModel planIndicatorViewModel) { if (outletViewModel == null) { throw new ArgumentNullException(nameof(outletViewModel)); } if (planIndicatorViewModel == null) { throw new ArgumentNullException(nameof(planIndicatorViewModel)); } this.OutletViewModel = outletViewModel; this.PlanIndicatorViewModel = planIndicatorViewModel; }
private Dictionary <long, int> GetQuantities(OutletViewModel outlet) { throw new NotImplementedException(); }
private Dictionary <long, string> GetActivities(OutletViewModel outlet) { throw new NotImplementedException(); }