Skip to content

Instantly share code, notes, and snippets.

@Hameds
Created November 2, 2017 10:48
Show Gist options
  • Save Hameds/fc5370bdcfb2c59896e688f067babe7e to your computer and use it in GitHub Desktop.
Save Hameds/fc5370bdcfb2c59896e688f067babe7e to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
namespace TddStore.Core
{
public interface IOrderFulfillmentService
{
Guid OpenSession(string user, string password);
bool IsInInventory(Guid sessionId, Guid ItemNumber, int quantity);
bool PlaceOrder(Guid sessionId, IDictionary items, string mailingAddress);
void CloseSession(Guid sessionId);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment