Exemplo n.º 1
0
 public ListLinesAdminPageViewModel(INavigationService navigationService, ILineRepository lineRepository) :
     base(navigationService)
 {
     this.navigationService = navigationService;
     this.lineRepository    = lineRepository;
     Title = "My View A";
 }
 public ListActionResponsiblePageViewModel(INavigationService navigationService, IActionRepository actionRepository, ILineRepository lineRepository) :
     base(navigationService)
 {
     this.navigationService = navigationService;
     this.actionRepository  = actionRepository;
     this.lineRepository    = lineRepository;
     Line = new Line();
 }
Exemplo n.º 3
0
 public RegisterLinePageViewModel(INavigationService navigationService, ILineRepository lineRepository, IActionRepository actionRepository)
     : base(navigationService)
 {
     this.navigationService = navigationService;
     this.lineRepository    = lineRepository;
     this.actionRepository  = actionRepository;
     Line  = new Line();
     Title = titlePage;
 }
        public ActionResponsiblePageViewModel(INavigationService navigationService, ILineRepository lineRepository, IActionRepository actionRepository, IPatientRepository patientRepository) :
            base(navigationService)
        {
            this.navigationService = navigationService;
            this.lineRepository    = lineRepository;
            this.actionRepository  = actionRepository;
            this.patientRepository = patientRepository;

            Action = new ActionModel();
        }
Exemplo n.º 5
0
 public RegisterActionPageViewModel(INavigationService navigationService, IActionRepository actionRepository, ILineRepository lineRepository, IPageDialogService dialogService) :
     base(navigationService)
 {
     this.navigationService = navigationService;
     this.actionRepository  = actionRepository;
     this.lineRepository    = lineRepository;
     this.dialogService     = dialogService;
     Action = new ActionModel();
     Line   = new Line();
     Title  = "Register de Ação";
 }
Exemplo n.º 6
0
 public PublicTransportRepository(DataContext context, ITicketRepository ticketRepository,
                                  IPricelistItemRepository pricelistItemRepository, ITimeTableRepository timeTableRepository,
                                  IUserDiscountRepository userDiscountRepository, IStationRepository stationRepository,
                                  IMapper mapper, UserManager <User> userManager, ILineRepository lineRepository)
 {
     _context                 = context;
     _ticketRepository        = ticketRepository;
     _pricelistItemRepository = pricelistItemRepository;
     _timeTableRepository     = timeTableRepository;
     _userDiscountRepository  = userDiscountRepository;
     _stationRepository       = stationRepository;
     _mapper         = mapper;
     _userManager    = userManager;
     _lineRepository = lineRepository;
 }
Exemplo n.º 7
0
 public LineService()
 {
     _repository = new LineRepository();
 }
Exemplo n.º 8
0
 public OrderService(IOrderRepository orderRepository, ILineRepository lineRepository)
 {
     _orderRepository = orderRepository;
     _lineRepository  = lineRepository;
 }
Exemplo n.º 9
0
 public LineController(ILineRepository LineRepository, IMapper mapper)
 {
     _LineRepository = LineRepository;
     _mapper         = mapper;
 }
Exemplo n.º 10
0
 public LineService(ILineRepository lineRepository, IItineraryRepository itineraryRepository)
 {
     _lineRepository      = lineRepository;
     _itineraryRepository = itineraryRepository;
 }
Exemplo n.º 11
0
 public LineBLL(ILineRepository lineRepository)
 {
     _lineRepository = lineRepository;
 }
Exemplo n.º 12
0
 public LineService(ILineRepository repository) : base(repository)
 {
 }
Exemplo n.º 13
0
 public DetailService(ILineRepository lineRepository, IOptimalPackage optimalPackage)
 {
     _lineRepository = lineRepository;
     _optimalPackage = optimalPackage;
 }
Exemplo n.º 14
0
 //constructeur permettant d'initialiser le repositories
 public LineService(ILineRepository lineRepository)
 {
     _LineRepository = lineRepository;
 }
Exemplo n.º 15
0
 public LineService(ILineRepository stub)
 {
     _repository = stub;
 }
Exemplo n.º 16
0
 public LineService(ILineRepository lineRepo)
 {
     _lineRepo = lineRepo;
 }
Exemplo n.º 17
0
 public LineService(ILineRepository repoBrand, IMapper mapper, MapperConfiguration configMapper)
 {
     _configMapper = configMapper;
     _mapper       = mapper;
     _repoLine     = repoBrand;
 }
Exemplo n.º 18
0
 public LineBLL()
 {
     _lineRepository = new LineRepository();
 }