public UserPictureBllModel(IUserLogic userBll, IPictureLogic pictureBll, IAwardLogic awardBll) { this.userBll = userBll; this.pictureBll = pictureBll; this.awardBll = awardBll; }
public PicturesApiController(IPictureLogic logic) { _logic = logic; }
public AwardPictureBllModel(IAwardLogic awardBll, IPictureLogic pictureBll) { this.awardBll = awardBll; this.pictureBll = pictureBll; }