Skip to content

Instantly share code, notes, and snippets.

@JamesBender
Created October 24, 2013 14:46
Show Gist options
  • Save JamesBender/7138590 to your computer and use it in GitHub Desktop.
Save JamesBender/7138590 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<Guid, int> 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