refactoring
This commit is contained in:
parent
0e52884535
commit
61d5e6a184
7 changed files with 60 additions and 21 deletions
14
Yavsc/Interfaces/IBookQueryData.cs
Normal file
14
Yavsc/Interfaces/IBookQueryData.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
using System;
|
||||
using Yavsc.Model;
|
||||
|
||||
namespace Yavsc.Interfaces
|
||||
{
|
||||
public interface IBookQueryData
|
||||
{
|
||||
ClientProviderInfo Client { get; set; }
|
||||
DateTime EventDate { get; set; }
|
||||
long Id { get; set; }
|
||||
Location Location { get; set; }
|
||||
decimal? Previsionnal { get; set; }
|
||||
}
|
||||
}
|
||||
19
Yavsc/Interfaces/IEstimate.cs
Normal file
19
Yavsc/Interfaces/IEstimate.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
namespace Yavsc.Interfaces
|
||||
{
|
||||
using System.Collections.Generic;
|
||||
using Yavsc.Models.Billing;
|
||||
public interface IEstimate
|
||||
{
|
||||
List<string> AttachedFiles { get; set; }
|
||||
List<string> AttachedGraphics { get; }
|
||||
List<CommandLine> Bill { get; set; }
|
||||
string ClientId { get; set; }
|
||||
long? CommandId { get; set; }
|
||||
string CommandType { get; set; }
|
||||
string Description { get; set; }
|
||||
long Id { get; set; }
|
||||
string OwnerId { get; set; }
|
||||
int? Status { get; set; }
|
||||
string Title { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue