public Comprobante(IRepositoryContext repositoryContext, IComprobanteDetalle detalle, IPartidas partida, IUsuarioArea usuarioArea)
     : base(repositoryContext)
 {
     cdService          = detalle ?? new ComprobanteDetalle();
     parService         = partida ?? new Partidas();
     usuarioAreaService = usuarioArea ?? new UsuarioArea();
     parametroService   = parametroService ?? new Parametro();
     partidasService    = partidasService ?? new Partidas();
 }
 public Comprobante(IRepositoryContext repositoryContext)
     : base(repositoryContext)
 {
     cdService             = cdService ?? new ComprobanteDetalle();
     parService            = parService ?? new Partidas();
     usuarioAreaService    = usuarioAreaService ?? new UsuarioArea();
     parametroService      = parametroService ?? new Parametro();
     partidasService       = partidasService ?? new Partidas();
     usuarioEmpresaService = usuarioEmpresaService ?? new UsuarioEmpresa();
     empresaService        = empresaService ?? new Empresa();
 }