예제 #1
0
        static void Main(string[] args)
        {
            string filePath = @"C:\users\Gabriel\Documents\Movies.csv";

            BootStrapper.Start();
            _moviesAppService = BootStrapper.container.GetInstance <IMoviesAppService>();
            _moviesAppService.ProcessarArquivoCSV(filePath);
        }
예제 #2
0
 public MoviesController(
     IMoviesAppService moviesAppServices)
 {
     _moviesAppServices = moviesAppServices;
 }