public MapRepository(IMapContext context)
 {
     this.context = context;
     using (var mysqlContext = new MapMSSQLContext())
     {
         // Creates the database if not exists
         mysqlContext.Database.EnsureCreated();
         mysqlContext.SaveChanges();
     }
 }