Created
October 24, 2013 14:46
-
-
Save JamesBender/7138590 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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