You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
324 B

  1. namespace Microsoft.eShopOnContainers.WebMVC.Services
  2. {
  3. using System.Collections.Generic;
  4. using System.Threading.Tasks;
  5. using ViewModels;
  6. public interface ICampaignService
  7. {
  8. Task<Campaign> GetCampaigns(int pageSize, int pageIndex);
  9. Task<CampaignItem> GetCampaignById(int id);
  10. }
  11. }