INozzleService.cs 355 B

123456789101112131415
  1. using Fuel.Core.Nozzle.Dto;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Fuel.Application.Service
  8. {
  9. public interface INozzleService
  10. {
  11. Task<bool> uploadNozzle(UploadNozzle uploadNozzle);
  12. Task<List<NozzleInfo>> GetNozzleInfo(int Nozzleid);
  13. }
  14. }