MarketCustomerResourcesController.cs 772 B

1234567891011121314151617181920212223242526272829
  1. using Microsoft.AspNetCore.Mvc;
  2. using OASystem.Domain.Dtos.CRM;
  3. using OASystem.Infrastructure.Repositories.CRM;
  4. namespace OASystem.API.Controllers
  5. {
  6. public class MarketCustomerResourcesController : Controller
  7. {
  8. private readonly NewClientDataRepository _clientCompanyRepository;
  9. /// <summary>
  10. /// 初始化
  11. /// </summary>
  12. public MarketCustomerResourcesController(NewClientDataRepository clientCompanyRepository)
  13. {
  14. this._clientCompanyRepository = clientCompanyRepository;
  15. }
  16. public IActionResult ViewDataInit()
  17. {
  18. return Ok("");
  19. }
  20. public IActionResult QuerySearchData(NewClientDataQueryDto dto)
  21. {
  22. return Ok("");
  23. }
  24. }
  25. }