14 lines
318 B
C#
14 lines
318 B
C#
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<CreateSesionModel> Execute(InCreateSesionModel data);
|
|
}
|
|
}
|