9 lines
132 B
C#
9 lines
132 B
C#
|
|
using LaDOSE.Entity;
|
|||
|
|
|
|||
|
|
namespace LaDOSE.Business.Interface
|
|||
|
|
{
|
|||
|
|
public interface ITodoService : IBaseService<Todo>
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|