示例#1
0
        public static void ImportSeats()
        {
            var seatsJson = File.ReadAllText(DataPaths.SeatsJson);
            var seatsDtos = JsonConvert.DeserializeObject <IEnumerable <SeatDto> >(seatsJson);

            SeatImportService.ImportSeats(seatsDtos);
        }
示例#2
0
 public JSONImport()
 {
     this.screeningImportService = new ScreeningImportService();
     this.actorImportService     = new ActorImportService();
     this.categoryImportService  = new CategoryImportService();
     this.seatImportService      = new SeatImportService();
     this.townImportService      = new TownImportService();
 }