Ejemplo n.º 1
0
 public FormsService(IUnitOfWork db, FormToFormDTO toDTO)
 {
     this.db    = db;
     this.toDTO = toDTO;
 }
Ejemplo n.º 2
0
 public FormsController(IFormsService formsService, FormToFormDTO toDTO)
 {
     this.formsService = formsService;
     this.toDTO        = toDTO;
 }