private static void ConfigureDtoMapper(this IServiceCollection services)
 {
     services.AddAutoMapper(config =>
     {
         BankAccountDto.ApplyMappingConfiguration(config);
         UserDto.ApplyMappingConfiguration(config);
         BillDto.ApplyMappingConfiguration(config);
     });
 }