No Description

IProprieteService.cs 404B

123456789101112131415
  1. using Backend.Models;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Backend.ApplicationCore.Interfaces.IServices
  7. {
  8. public interface IProprieteService
  9. {
  10. Task<IEnumerable<ProprieteResponse>> GetAllAsync();
  11. Task<int> CreateOrUpdateAsync(ProprieteDto ProprieteDto);
  12. Task<int> DeleteByIdAsync(Guid Id);
  13. }
  14. }

Powered by TurnKey Linux.