Created
November 2, 2017 10:48
-
-
Save Hameds/fc5370bdcfb2c59896e688f067babe7e 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 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