Пример #1
0
 public FoodMenuManager(IFoodMenuDal foodMenuDal, IMapper mapper, IFoodMenuSubScreenDal foodMenuSubScreenDal, IHttpContextAccessor httpContextAccessor)
 {
     this.httpContextAccessor  = httpContextAccessor;
     this.foodMenuSubScreenDal = foodMenuSubScreenDal;
     this.mapper      = mapper;
     this.foodMenuDal = foodMenuDal;
 }
Пример #2
0
 public FoodMenuSubScreenManager(IFoodMenuSubScreenDal foodMenuSubScreenDal, IMapper mapper,
                                 IFoodMenuDal foodMenuDal, IScreenDal screenDal, ISubSCreenDal subSCreenDal)
 {
     this.foodMenuDal          = foodMenuDal;
     this.subSCreenDal         = subSCreenDal;
     this.screenDal            = screenDal;
     this.mapper               = mapper;
     this.foodMenuSubScreenDal = foodMenuSubScreenDal;
 }