18 lines
318 B
C#
18 lines
318 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DILastSession.Framework.Interface
|
|
{
|
|
public interface IService
|
|
{
|
|
#region [ - Methods - ]
|
|
void M1();
|
|
void M2();
|
|
void M3();
|
|
#endregion
|
|
}
|
|
}
|