signing estimate

This commit is contained in:
Paul Schneider 2017-02-22 22:58:02 +01:00
commit 65eebf6409
8 changed files with 64 additions and 49 deletions

View file

@ -1,7 +1,3 @@
namespace Yavsc.Models.Messaging
{
//
// BookQueryEvent.cs
//
@ -23,6 +19,12 @@ namespace Yavsc.Models.Messaging
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
namespace Yavsc.Models.Messaging
{
using Interfaces.Workflow;
public class BookQueryEvent: BookQueryProviderInfo, IEvent
{
public BookQueryEvent()

View file

@ -1,16 +1,23 @@
using System.Linq;
using Microsoft.Data.Entity;
using Microsoft.Extensions.Localization;
using Yavsc.Helpers;
using Yavsc.Models.Billing;
namespace Yavsc.Models.Messaging
{
using Interfaces.Workflow;
using Billing;
using Yavsc.Helpers;
using System;
public class EstimationEvent: IEvent
{
public EstimationEvent(ApplicationDbContext context, Estimate estimate, IStringLocalizer SR)
{
Topic = "Estimation";
Estimation = estimate;
var perfer = context.Performers.FirstOrDefault(
var perfer = context.Performers.Include(
p=>p.Performer
).FirstOrDefault(
p => p.PerformerId == estimate.OwnerId
);
// Use estimate.OwnerId;
@ -27,28 +34,19 @@ namespace Yavsc.Models.Messaging
ProviderClientInfo ProviderInfo { get; set; }
Estimate Estimation { get; set; }
private string subtopic = null;
string IEvent.Topic
{
get
{
return "/topic/estimate"+subtopic!=null?"/"+subtopic:"";
}
set
{
subtopic = value;
}
}
string IEvent.Sender
{
get; set;
}
string IEvent.Message
public string Topic
{
get; set;
}
public string Sender
{
get; set;
}
public string Message
{
get; set;
}
}
}