Book a Demo

Author Topic: Bug in source code generator module  (Read 3230 times)

P10tr3k

  • EA Novice
  • *
  • Posts: 2
  • Karma: +0/-0
    • View Profile
Bug in source code generator module
« on: September 10, 2010, 06:46:08 pm »
I have a class and interface. Class realizes that interface. There are two overloaded methods “GetReport”. When I generate source code for this package , only one of these methods  is generated. The second one is omitted but instead I get method “GetReportDoc”. And this method is not anymore in model. I was deleted some time ago. Obviously there is something wrong with source code generator module.




Source code:

        
            public ReportDocument IService.GenerateReportDoc(int reportID, List<QueryParameter> parametersList, string user, string pass){ /*...*/}

            
public ReportDocument IService.GenerateReport(int reportID, Ditictionaty<string, object> parametersList, string user, string pass){

                  return null;
            }