32 lines
704 B
C#
32 lines
704 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OliviaAddInPro.Model
|
|
{
|
|
public interface ILimpieza
|
|
{
|
|
//**********************************************
|
|
//Se recogen en PaneLimpiezaSub1
|
|
/**
|
|
* Tipo de tratamiento elegidos
|
|
*/
|
|
int TipoTto { get; }
|
|
/**
|
|
* Ámbitos de trabajo elegidos
|
|
*/
|
|
bool[] AmbitosSel { get; }
|
|
/**
|
|
* Indica si respeta el sentido de circulación o no
|
|
*/
|
|
bool RespCirc { get; }
|
|
/**
|
|
* Tipo de unidades del tiempo de tto
|
|
*/
|
|
int UdsTTto { get; }
|
|
|
|
}
|
|
}
|