public AuthorityGroupRepository(IMySqlDataSourceConfiguration MySqlDataSourceConfiguration) : base(MySqlDataSourceConfiguration)
 {
 }
 protected AbstractRepository(IMySqlDataSourceConfiguration MySqlDataSourceConfiguration)
 {
     this.MySqlDataSourceConfiguration = MySqlDataSourceConfiguration;
     // Dapper to ignore/remove underscores in field names mapping
     Dapper.DefaultTypeMap.MatchNamesWithUnderscores = true;
 }