static void Main(string[] args) { string filePath = @"C:\users\Gabriel\Documents\Movies.csv"; BootStrapper.Start(); _moviesAppService = BootStrapper.container.GetInstance <IMoviesAppService>(); _moviesAppService.ProcessarArquivoCSV(filePath); }
public MoviesController( IMoviesAppService moviesAppServices) { _moviesAppServices = moviesAppServices; }