using System; using System.Collections.Generic; using IRaCIS.Application.ViewModels; using IRaCIS.Core.Application.Contracts.RequestAndResponse; namespace IRaCIS.Application.Interfaces { public interface ICroService { PageOutput GetCroList(CROCompanyQueryDTO queryModel); IEnumerable GetCroSearchList(); IResponseOutput AddOrUpdateCro(CROCompanyDTO addCroCompanyViewModel,Guid userId); IResponseOutput DeleteCro(Guid croCompanyId); } }