Пример #1
0
 public HomeController(ICarService carService, IClientService clientService, IParkingTicketService parkingTicketService, IParkingPlaceService parkingPlaceService, IParkingService parkingService)
 {
     CarService           = carService;
     ClientService        = clientService;
     ParkingPlaceService  = parkingPlaceService;
     ParkingTicketService = parkingTicketService;
     ParkingService       = parkingService;
     list = ParkingService.GetAll();
 }
        public void Initialize()
        {
            _parkingPlaceService = Substitute.For <IParkingPlaceService>();
            _mapper = Substitute.For <AutoMapper.IMapper>();
            _log    = Substitute.For <Logger.IMapper>();

            _parkingPlace = new ParkingPlace
            {
                IDParkingPlace = 1,
                Place          = "dom"
            };
            _parkingPlaceService.AllParkingPlace()
            .Returns(Task.FromResult((IEnumerable <ParkingPlace>) new List <ParkingPlace>()
            {
                _parkingPlace
            })
                     );

            _parkingPlaceService.FindById(Arg.Is <int>(x => x == 1))
            .Returns(_parkingPlace);
        }
 public ParkingPlaceController(IParkingPlaceService parkingPlaceService, IMapper mapper, ILogService log)
 {
     _parkingPlaceService = parkingPlaceService;
     _mapper = mapper;
     _log    = log;
 }