Пример #1
0
 //contructor
 public TareaMapper(ICentroCostosService ICentroDeCostos, ITareaService ItareaService, ITipoTareaService ITipoTareaService, IEstadoTareaService IEstadoTareaService)
 {
     this.ItareaService       = ItareaService;
     this.ITipoTareaService   = ITipoTareaService;
     this.IEstadoTareaService = IEstadoTareaService;
     this.ICentroDeCostos     = ICentroDeCostos;
 }
Пример #2
0
 //constructor
 public CostoUsuarioMapper(ICentroCostosService pICentroCostos)
 {
     this.ICentroCostos = pICentroCostos;
 }
Пример #3
0
 //contructos centro costos por usuario
 public CentroDeCostosController(ICentroCostosService ICentroCostosService, ICostoUsuarioMapper ICostoUsuarioMapper)
 {
     this.ICentroCostosService = ICentroCostosService;
     this.ICostoUsuarioMapper  = ICostoUsuarioMapper;
 }