13 lines
244 B
C#
13 lines
244 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace LawFirmContracts.DI
|
|||
|
{
|
|||
|
public interface ILogicImplementationExtension : IImplementationExtension
|
|||
|
{
|
|||
|
}
|
|||
|
}
|