Ejemplo n.º 1
0
 // Injecting a facade with IDisposable 
 public StudyController(MainHandler facade)
 {
     //_facade = facade;
     //var handler = new MainHandler();
     //handler.ExtractBibtexTags("").Item2.IfNotNull();
     throw new NotImplementedException();
 }
Ejemplo n.º 2
0
 // Injecting a facade with IDisposable 
 public TeamController(MainHandler facade)
 {
     _facade = facade;
 }
Ejemplo n.º 3
0
 // Injecting a facade with IDisposable 
 public UserController(MainHandler facade)
 {
     _facade = facade;
 }
Ejemplo n.º 4
0
 private static void Main(string[] args)
 {
     AutoMapperConfigurator.Configure(); //Initialize AutoMapper
     var mainHandler = new MainHandler();
 }