public ProductSizePresenter(IProductSizeView view, ProductSizeModel model) { _view = view; _model = model; }
public ProductSizePresenter(IProductSizeView view) : this(view, new ProductSizeModel()) { }