Exemple #1
0
 public CountryController(
     IApplicationContext appicationContext,
     ICountryBLL CountryBLL)
 {
     _CountryBLL        = CountryBLL;
     _appicationContext = appicationContext;
 }
 public CountryController(ICountryBLL bll, LogAdapter logAdapter, UserInfo userInfo)
 {
     _userInfo   = userInfo;
     _bll        = bll;
     _logAdapter = logAdapter;
     _logAdapter.Initial(this.GetType().Name);
 }
 public DecisionController(
     IApplicationContext appicationContext,
     IDecisionBLL decisionBLL,
     ICouncilTypeBLL councilTypeBLL,
     ICountryBLL countryBLL,
     IDecisionTypeBLL decisionTypeBLL,
     IActivitySectorBLL activitySectorBLL,
     IMainCategoryBLL mainCategoryBLL,
     ICompanyBLL companyBLL,
     IDepartmentBLL departmentBLL,
     IDecisionExecutionBLL decisionExecutionBLL,
     IDepartmentResponsibleBLL departmentResponsibleBLL,
     ISubCategoryBLL subCategoryBLL)
 {
     this._decisionBLL         = decisionBLL;
     this._mainCategoryBLL     = mainCategoryBLL;
     this._subCategoryBLL      = subCategoryBLL;
     _countryBLL               = countryBLL;
     _decisionTypeBLL          = decisionTypeBLL;
     _activitySectorBLL        = activitySectorBLL;
     _companyBLL               = companyBLL;
     _departmentBLL            = departmentBLL;
     _decisionExecutionBLL     = decisionExecutionBLL;
     _departmentResponsibleBLL = departmentResponsibleBLL;
     _councilTypeBLL           = councilTypeBLL;
     _appicationContext        = appicationContext;
 }
 public CountryController(ICountryBLL bll,
                          ILogger <CountryController> logger,
                          UserInfo userInfo)
 {
     _userInfo = userInfo;
     _bll      = bll;
     _logger   = logger;
 }
Exemple #5
0
 public CountryController(ICountryBLL countryBLL)
 {
     _countryBLL = countryBLL;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="CountryBLL"></param>
 public CountryController(ICountryBLL CountryBLL)
 {
     this._CountryBLL = CountryBLL;
 }