Skip to content

Instantly share code, notes, and snippets.

@mortezadalil
Created December 8, 2019 10:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mortezadalil/027bf465af1cb4f8b98c8d9bd205cd11 to your computer and use it in GitHub Desktop.
Save mortezadalil/027bf465af1cb4f8b98c8d9bd205cd11 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Cms.Core.Domain;
using Cms.Core.Dtos.Generals;
using Cms.Core.Dtos.UseCaseDtos;
using Cms.Core.IRepositories;
using Cms.Core.IUseCases;
namespace Cms.Core.UseCases
{
public class AddPostUseCase : IAddPostUseCase
{
public AddPostUseCase()
{
}
public async Task HandleAsync(AddPostRequest message, IOutputPort<GenericResponse<AddPostResponse>> outputPort)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment