using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VentaUniformes.Application.Sesion.Commands.CreateSesion { public interface ICreateSesionCommand { public Task Execute(InCreateSesionModel data); } }