INozzleRepository.cs 470 B

123456789101112131415161718
  1. using Fuel.Core.Nozzle.Dto;
  2. using FuelServer.Core.Entity;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Fuel.Application
  9. {
  10. public interface INozzleRepository
  11. {
  12. Task<bool> uploadNozzle(UploadNozzle uploadNozzle);
  13. Task<List<nozzle>> AddNozzle(nozzle _nozzle);
  14. Task<tanks> AddTanks(tanks _tanks);
  15. Task<product> AddProduct(product _product);
  16. }
  17. }