Example #1
0
 public BaseController(IUprdPipelineService pipelineService, IClientEnvironmentSettingsService ClientSettingsService, IDashNominationStatusService dashNominationStatusService)
 {
     this.pipelineService              = pipelineService;
     this._ClientSettingsService       = ClientSettingsService;
     this._dashNominationStatusService = dashNominationStatusService;
 }
Example #2
0
 public TransactiontypesController(IUprdTransactionTypeService locRepository, IUprdPipelineService pipelineService)
 {
     this.locService = locRepository;
     //this._pipelineService = pipelineService;
 }
Example #3
0
        //static string apiBaseUrl = ConfigurationManager.AppSettings.Get("BaseUrlOfUprdApi");
        //private RestClient clientLocation = new RestClient(apiBaseUrl + "/api/Location/");
        //public LocationController(ILocationService ILocationService, IPipelineService pipelineService) : base(pipelineService)
        //{
        //    this.ILocationService = ILocationService;

        //}

        public LocationController(IUprdLocationService ILocationService, IUprdPipelineService pipelineService) : base(pipelineService, null, null)
        {
            this.ILocationService = ILocationService;
            this._pipelineService = pipelineService;
        }
 public PipeLineTransactionTypeController(IUprdPipeTransTypeMapService IPipeTransTypeMapService, IUprdPipelineService pipelineService, IUprdTransactionTypeService transtypeService)
 {
     this._IPipeTransTypeMapService = IPipeTransTypeMapService;
     this._pipelineService          = pipelineService;
     this._transtypeService         = transtypeService;
 }