public PartnerActionFilter(IStatusService statusService, ICallTarifService callTarifService, IPriceListService priceListService)
 {
     this._statusService = statusService;
     this._callTarifService = callTarifService;
     this._priceListService = priceListService;
 }
 public CallTarifController(ICallTarifService callTarifService, IStatusService statusService)
 {
     this._callTarifService = callTarifService;
     this._statusService = statusService;
 }