20 lines
473 B
C#
20 lines
473 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OliviaAddInPro.Model.contract
|
|
{
|
|
public interface IprocessManager
|
|
{
|
|
void SetProceso(string proceso);
|
|
void SetEstado(string estado);//estado del proceso
|
|
void SetProgress(double progresPorcent);
|
|
double GetProgress();
|
|
bool Getcancelled();
|
|
void Setcancelled();
|
|
void Inicia();
|
|
}
|
|
}
|