Hi Team
I have a model below, how do i create razor components for this? Basically the page should be single page. It must do this following
The application should include the following: a listing of operations with an option to remove an operation a modal form to add a new an operation to the list of operations a modal form to add a new device to an operation a pleasant user interface.
class Operation {
public int OperationID {get;set;}
public string Name {get;set;}
public int OrderInWhichToPerform {get;set;}
public byte[] ImageData {get;set;}
public Device Device {get;set;}
}
class Device {
public int DeviceID {get;set;}
public string Name {get;set;}
public DeviceType {get;set;}
}
enum DeviceType {
BarcodeScanner,
Printer,
Camera
SocketTray
}
Guest UserPosted Nov 21, 2023, 3:01 PM
Hi Sam
Yes and services and data sources are not allowed, only local data should be added to the operation from the modal form
Sam HobbsPosted Nov 21, 2023, 3:47 AM
Are these the instructions provided by your instructor? Is that all that was provided?