public VentasController(IVentasDiariasServices serVen, IPosTurnosServices serPos, ICombustiblesServices serCom, IAjustePosServices serAjus, IFacturasMNServices serFac)
 {
     _serVen = serVen;
     _serPos = serPos;
     _serCom = serCom;
     _serAjus = serAjus;
     _serFac = serFac;
 }
 public CombustiblesController(ICombustiblesServices serCom, IVentasDiariasServices serVen, IComprasServices serComp, IPosTurnosServices serPos, ITanquesServices serTan, IKardexCombustibleServices serKcm, IAjustePosServices serAju)
 {
     _serCom = serCom;
     _serVen = serVen;
     _serComp = serComp;
     _serPos = serPos;
     _serTan = serTan;
     _serKcm = serKcm;
     _serAju = serAju;
 }