CSLA - Extension
This commit is contained in:
@@ -1,12 +1,8 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Data;
|
||||
using System.Data.SqlClient;
|
||||
using Csla;
|
||||
using Csla.Data;
|
||||
using System.IO;
|
||||
using Volian.Base.Library;
|
||||
|
||||
namespace VEPROMS.CSLA.Library
|
||||
{
|
||||
@@ -16,13 +12,11 @@ namespace VEPROMS.CSLA.Library
|
||||
[Serializable()]
|
||||
private class AddByROFstIDImageIDCriteria
|
||||
{
|
||||
private int _ROFstID;
|
||||
public int ROFstID
|
||||
{ get { return _ROFstID; } }
|
||||
private string _ImagedIDs;
|
||||
public string ImagedIDs
|
||||
{ get { return _ImagedIDs; } }
|
||||
public AddByROFstIDImageIDCriteria(int rOFstID, string imagedIDs)
|
||||
private readonly int _ROFstID;
|
||||
public int ROFstID => _ROFstID;
|
||||
private readonly string _ImagedIDs;
|
||||
public string ImagedIDs => _ImagedIDs;
|
||||
public AddByROFstIDImageIDCriteria(int rOFstID, string imagedIDs)
|
||||
{
|
||||
_ROFstID = rOFstID;
|
||||
_ImagedIDs = imagedIDs;
|
||||
|
||||
Reference in New Issue
Block a user