Renamed namespaces and related identifiers from EnvelopeGenerator.WebUI to EnvelopeGenerator.Server across the project. This change affects data models, services, controllers, and configuration files to ensure consistency with the new architecture. Updated @using directives in Razor components and other files to reflect the new namespace structure. Adjusted project references in EnvelopeGenerator.Server.csproj to point to the new EnvelopeGenerator.Server.Client project. Modified middleware and logging configurations to use the new EnvelopeGenerator.Server namespace, including changes in Program.cs and appsettings.json. Updated resource and file references to use the new EnvelopeGenerator.Server path, ensuring correct resource loading. Adjusted configuration options in Program.cs to use the new namespace for options classes, such as ApiOptions and PdfViewerOptions. Updated authentication scheme names and related constants to align with the new namespace structure. Revised comments and documentation to reflect the new namespace, ensuring clarity and consistency in the codebase.
71 lines
2.5 KiB
C#
71 lines
2.5 KiB
C#
using System.Collections;
|
|
|
|
namespace EnvelopeGenerator.Server.Client.Data {
|
|
public class DataItemList : IList<DataItem>, IList {
|
|
readonly int rowCount;
|
|
|
|
public DataItem this[int index] { get { return new DataItem(index); } set { } }
|
|
public int Count { get { return rowCount; } }
|
|
public bool IsReadOnly { get { return false; } }
|
|
public bool IsFixedSize { get { return false; } }
|
|
public object SyncRoot { get { return true; } }
|
|
public bool IsSynchronized { get { return true; } }
|
|
object IList.this[int index] { get { return new DataItem(index); } set { } }
|
|
|
|
public DataItemList(int rowCount) {
|
|
this.rowCount = rowCount;
|
|
}
|
|
public IEnumerator<DataItem> GetEnumerator() {
|
|
throw new NotImplementedException();
|
|
}
|
|
public int Add(object value) {
|
|
throw new NotImplementedException();
|
|
}
|
|
public bool Contains(object value) {
|
|
throw new NotImplementedException();
|
|
}
|
|
public void Clear() {
|
|
throw new NotImplementedException();
|
|
}
|
|
public int IndexOf(object value) {
|
|
throw new NotImplementedException();
|
|
}
|
|
public void Insert(int index, object value) {
|
|
throw new NotImplementedException();
|
|
}
|
|
public void Remove(object value) {
|
|
throw new NotImplementedException();
|
|
}
|
|
public void RemoveAt(int index) {
|
|
throw new NotImplementedException();
|
|
}
|
|
public void CopyTo(Array array, int index) {
|
|
throw new NotImplementedException();
|
|
}
|
|
IEnumerator IEnumerable.GetEnumerator() {
|
|
throw new NotImplementedException();
|
|
}
|
|
public int IndexOf(DataItem item) {
|
|
throw new NotImplementedException();
|
|
}
|
|
public void Insert(int index, DataItem item) {
|
|
throw new NotImplementedException();
|
|
}
|
|
public void Add(DataItem item) {
|
|
throw new NotImplementedException();
|
|
}
|
|
public bool Contains(DataItem item) {
|
|
throw new NotImplementedException();
|
|
}
|
|
public void CopyTo(DataItem[] array, int arrayIndex) {
|
|
throw new NotImplementedException();
|
|
}
|
|
public bool Remove(DataItem item) {
|
|
throw new NotImplementedException();
|
|
}
|
|
void ICollection<DataItem>.CopyTo(DataItem[] array, int arrayIndex) {
|
|
CopyTo(array, arrayIndex);
|
|
}
|
|
}
|
|
}
|