public ReportsController(IBuyingAgentReports buyingAgentReports, IBuyingAgentCheckIfExisted buyingAgentCheckIfExisted, ILogger <AddNewController> logger) { _buyingAgentReports = buyingAgentReports; _buyingAgentCheckIfExisted = buyingAgentCheckIfExisted; _logger = logger; }
public UpdateExistingController(IBuyingAgentRead buyingAgentRead, IBuyingAgentCheckIfSaved buyingAgentIfSaved, IBuyingAgentCheckIfExisted buyingAgentCheckIfExisted, ILogger <UpdateExistingController> logger) { _buyingAgentRead = buyingAgentRead; _buyingAgentIfSaved = buyingAgentIfSaved; _buyingAgentCheckIfExisted = buyingAgentCheckIfExisted; _logger = logger; }