Example #1
0
 public SetupApplication(IConfigService configService, IOtherUtilities otherUtilities)
 {
     _configService = configService;
     _otherUtilities = otherUtilities;
     _log = LogManager.GetLogger("SetupApplication");
 }
 public ApproveSalesmanOrderItem(IOtherUtilities otherUtilities)
 {
     _otherUtilities = otherUtilities;
 }
 public EditPOSSaleLineItem(IOtherUtilities otherUtilities)
 {
     _otherUtilities = otherUtilities;
 }
Example #4
0
 public WebApiProxy(IConfigService configService, IDeserializeJson deserializeJson, IOtherUtilities otherUtilities)
 {
     _configService = configService;
     _deserializeJson = deserializeJson;
     _otherUtilities = otherUtilities;
 }