[OperationContract]
[FaultContract(typeof(ValidationFaultContract))]
[FaultContract(typeof(DbFaultContract))]
[SwaggerWcfTag("Customers", false)]
[SwaggerWcfPath(null, null, null, null, null, false, null, Summary = "Get the customer(s) information associated with a given email.", Description = "Returns the customer(s) information associated with the given email")]
[WebGet(UriTemplate = "FindByEmail?email={email}", ResponseFormat = WebMessageFormat.Json)]
[SwaggerWcfResponse(StatusCode = HttpStatusCode.OK, Description = "Success")]
[SwaggerWcfResponse(StatusCode = HttpStatusCode.InternalServerError, Description = "An unexpected error occurred while processing the request.", Type = typeof(JsonErrorMessage))]
[SwaggerWcfResponse(StatusCode = HttpStatusCode.BadRequest, Description = "Invalid email provided", Type = typeof(JsonErrorMessage))]
CustomerInfoContract[] FindCustomersByEmail(string email)