using System; using System.Collections.Generic; using IRaCIS.Application.Contracts; using IRaCIS.Core.Infrastructure.Extention; namespace IRaCIS.Application.Interfaces { public interface ICroService { Task> GetCroList(CROCompanyQueryDTO queryModel); Task> GetAllCROList(Guid? croId); Task AddOrUpdateCro(CROCompanyDTO addCroCompanyViewModel); Task DeleteCro(Guid croCompanyId); } }