9 lines
180 B
C#
9 lines
180 B
C#
|
|
namespace CuentasCobrar.API.Installers
|
|||
|
|
{
|
|||
|
|
public interface IInstaller
|
|||
|
|
{
|
|||
|
|
void InstallServices(IServiceCollection services, IConfiguration configuration);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|