Exemple #1
0
 public SolicitacaoCadastroRepository(
     ICreateSolicitacao create,
     IGetAllSolicitacao getAll,
     IGetByIdSolicitacao getById,
     IDeleteSolicitacao delete
     )
 {
     this.create  = create;
     this.getAll  = getAll;
     this.getById = getById;
     this.delete  = delete;
 }