packaging
This commit is contained in:
parent
caa9e1a6fa
commit
f0c9fb441d
49 changed files with 2855 additions and 1724 deletions
|
|
@ -9,6 +9,7 @@ namespace ZicMoove.ViewModels.EstimateAndBilling
|
|||
using Helpers;
|
||||
using Interfaces;
|
||||
using Model;
|
||||
using Model.Musical;
|
||||
using Model.Social;
|
||||
using Model.Workflow;
|
||||
using System.Collections.ObjectModel;
|
||||
|
|
|
|||
|
|
@ -11,6 +11,8 @@ namespace ZicMoove.ViewModels.EstimateAndBilling
|
|||
using Model.Workflow;
|
||||
using Model.Social;
|
||||
using Validation;
|
||||
using Model.Musical;
|
||||
|
||||
public class EditEstimateViewModel : EditingViewModel<Estimate>
|
||||
{
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,19 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using XLabs.Forms.Mvvm;
|
||||
using ZicMoove.Model.Social;
|
||||
using ZicMoove.Model.Workflow.Messaging;
|
||||
using ZicMoove.ViewModels.Validation;
|
||||
|
||||
namespace ZicMoove.ViewModels.WorkFlow
|
||||
{
|
||||
class WorkflowBookViewModel : EditingViewModel<BookQuery>
|
||||
{
|
||||
public WorkflowBookViewModel(BookQuery data) : base(data)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -5,7 +5,7 @@ namespace ZicMoove.ViewModels
|
|||
using EstimateAndBilling;
|
||||
using UserProfile;
|
||||
|
||||
public class HomeViewModel : ViewModel
|
||||
public class WorkflowViewModel : ViewModel
|
||||
{
|
||||
public BookQueriesViewModel BookQueries { get; set; }
|
||||
public UserProfileViewModel UserProfile { get; set; }
|
||||
Loading…
Add table
Add a link
Reference in a new issue