11 lines
270 B
C#
11 lines
270 B
C#
using ConstructorApp.EntityLayer.Entities;
|
|
|
|
namespace ConstructorApp.BusinessLayer.Abstract
|
|
{
|
|
public interface IWorkProcessService : IGenericService<WorkProcess>
|
|
{
|
|
void TServiceStatusActive(int id);
|
|
void TServiceStatusPassive(int id);
|
|
}
|
|
}
|