Exemplo n.º 1
0
 public UserDisplayViewModel(StatusInfoViewModel status, IWindowManager window,
                             IUserEndPoint userEndPoint)
 {
     _status       = status;
     _window       = window;
     _userEndPoint = userEndPoint;
 }
Exemplo n.º 2
0
 public SalesViewModel(IProductEndPoint productEndPoint, ISaleEndPoint saleEndPoint, IConfigHelper configHelper,
                       IMapper mapper, StatusInfoViewModel status, IWindowManager window)
 {
     _productEndPoint = productEndPoint;
     _saleEndPoint    = saleEndPoint;
     _configHelper    = configHelper;
     _mapper          = mapper;
     _status          = status;
     _window          = window;
 }