Prizm.Main.Forms.Notifications.Managers.Selective.SelectiveOperationManager.CreateNotification C# (CSharp) Method

CreateNotification() public static method

public static CreateNotification ( System.Guid ownerId, string ownerName, float unitsLeft, string information ) : Notification
ownerId System.Guid
ownerName string
unitsLeft float
information string
return Notification
        public static Notification CreateNotification(Guid ownerId, string ownerName, float unitsLeft, string information)
        {
            return new Notification(ownerId, ownerName, TypeNotification.SelectiveInspectionOperation, information, unitsLeft);
        }