Exemplo n.º 1
0
        public static void ImportScreenings()
        {
            var screeningsJson = File.ReadAllText(DataPaths.ScreeningsJson);
            var screeningDtos  = JsonConvert.DeserializeObject <IEnumerable <ScreeeningDto> >(screeningsJson);

            ScreeningImportService.ImportScreenings(screeningDtos);
        }
Exemplo n.º 2
0
 public JSONImport()
 {
     this.screeningImportService = new ScreeningImportService();
     this.actorImportService     = new ActorImportService();
     this.categoryImportService  = new CategoryImportService();
     this.seatImportService      = new SeatImportService();
     this.townImportService      = new TownImportService();
 }