OliviaAddInPro/Model/Recogida.cs

24 lines
474 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using OliviaAddInPro.Helper;
using OliviaAddInPro.Services;
namespace OliviaAddInPro.Model
{
class Recogida : TratamientoComun
{
public RecogidaServ Serv { get; set; } = null;
public Recogida()
{
Serv = new RecogidaServ(this);
}
public void Ejecuta(ModosEjec modo)
{
}
}
}