コード例 #1
0
ファイル: TextoDomain.cs プロジェクト: tadeurahian/blog_back
 public TextoDomain(ITextoRepository textoRepository)
 {
     _textoRepository = textoRepository;
 }
コード例 #2
0
ファイル: Textoservice.cs プロジェクト: arthals/tcc2
 public Textoservice(ITextoRepository textoRepository)
 {
     _textoRepository = textoRepository;
 }
コード例 #3
0
ファイル: ContextoService.cs プロジェクト: arthals/tcc2
 public ContextoService(IContextoRepository contextoRepository, ITextoRepository textoRepository)
 {
     _contextoRepository = contextoRepository;
     _textoRepository    = textoRepository;
 }